From 4c997ea09e152b70537dfbaf1894e41c95ed5b00 Mon Sep 17 00:00:00 2001 From: Francisco Giordano Date: Tue, 29 Oct 2019 16:40:18 -0300 Subject: [PATCH] make PullPayment.withdrawPaymentsWithGas external (cherry picked from commit 76a1d7a3cd29fb7797cd12d2a5906b94325b773e) --- contracts/payment/PullPayment.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/payment/PullPayment.sol b/contracts/payment/PullPayment.sol index 546e7e817..6a5f4589b 100644 --- a/contracts/payment/PullPayment.sol +++ b/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); }