소스 검색

make PullPayment.withdrawPaymentsWithGas external

Francisco Giordano 6 년 전
부모
커밋
76a1d7a3cd
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      contracts/payment/PullPayment.sol

+ 1 - 1
contracts/payment/PullPayment.sol

@@ -49,7 +49,7 @@ contract PullPayment {
      * Make sure you trust the recipient, or are either following the
      * checks-effects-interactions pattern or using {ReentrancyGuard}.
      */
-    function withdrawPaymentsWithGas(address payable payee) public {
+    function withdrawPaymentsWithGas(address payable payee) external {
         _escrow.withdrawWithGas(payee);
     }