Skip to content

Commit

Permalink
update certora
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsoncusack committed Apr 15, 2024
1 parent da9a09f commit c6f388d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions certora/harness/CoinbaseSmartWalletHarness.sol
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ contract CoinbaseSmartWalletHarness is CoinbaseSmartWallet {
/// @dev Sends to the EntryPoint (i.e. `msg.sender`) the missing funds for this transaction.
modifier payPrefund(uint256 missingAccountFunds) override {
_;
assert (msg.sender == entryPoint());
assert (msg.sender == entryPoint);
if(missingAccountFunds !=0) {
(bool success, ) = entryPoint().call{gas: gasleft(), value: missingAccountFunds}("");
(bool success, ) = entryPoint.call{gas: gasleft(), value: missingAccountFunds}("");
}
}

Expand Down

0 comments on commit c6f388d

Please sign in to comment.