ethereum: fix view error with newer version of forge

This commit is contained in:
Jonathan Claudius 2023-06-07 19:57:31 +00:00 committed by Evan Gray
parent d860566f74
commit 05cec3d729
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ contract TestTokenImplementation is TokenImplementation, Test {
address spender,
uint256 amount,
uint256 deadline
) public view returns (SignatureSetup memory output) {
) public returns (SignatureSetup memory output) {
// prepare signer allowing for tokens to be spent
uint256 sk = uint256(walletPrivateKey);
output.allower = vm.addr(sk);