Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
evelinemolnar committed Oct 2, 2024
1 parent b44eba9 commit 64a8500
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions contracts/TestCaller.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,9 @@ contract TestCaller {

function upgrade() public {}

function callPayable() public payable {}
function callPayable() public {}

function callNonPayable() public {}

function callPayableWithParams(uint256 size, address addr, address tokenIdentifier) public payable {
function callPayableWithParams(uint256 size, address addr, address tokenIdentifier) public {
CalledData memory data = CalledData({ size: size, addr: addr, tokenIdentifier: tokenIdentifier });

calledDataParams.push(data);
Expand Down

0 comments on commit 64a8500

Please sign in to comment.