Skip to content

Commit

Permalink
Update src/contracts/escrow_account.cairo
Browse files Browse the repository at this point in the history
Co-authored-by: gaetbout <[email protected]>
  • Loading branch information
sgc-code and gaetbout authored Jul 4, 2024
1 parent 66efc04 commit 95850fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/contracts/escrow_account.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ mod EscrowAccount {
let execution_info = get_execution_info().unbox();
assert(execution_info.caller_address.is_zero(), 'escrow/only-protocol');
let tx_info = execution_info.tx_info.unbox();
// When paymaster is implemented on startkent it might break the logic in this method
// When paymaster is implemented on starknet it might break the logic in this method
assert(tx_info.paymaster_data.is_empty(), 'escrow/unsupported-paymaster');
// No need to allow deployment
assert(tx_info.account_deployment_data.is_empty(), 'escrow/invalid-deployment-data');
Expand Down

0 comments on commit 95850fb

Please sign in to comment.