From febbfd4204f72ea9371553dc3f2e349309b1bb0c Mon Sep 17 00:00:00 2001 From: Erik Kundt Date: Wed, 4 Jul 2018 19:20:51 +0200 Subject: Adds visibility to compilation tests. --- test/compilationTests/zeppelin/payment/PullPayment.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/compilationTests/zeppelin/payment') diff --git a/test/compilationTests/zeppelin/payment/PullPayment.sol b/test/compilationTests/zeppelin/payment/PullPayment.sol index ba710b53..6db7df78 100644 --- a/test/compilationTests/zeppelin/payment/PullPayment.sol +++ b/test/compilationTests/zeppelin/payment/PullPayment.sol @@ -28,7 +28,7 @@ contract PullPayment { /** * @dev withdraw accumulated balance, called by payee. */ - function withdrawPayments() { + function withdrawPayments() public { address payee = msg.sender; uint256 payment = payments[payee]; -- cgit