Skip to content

Commit

Permalink
remove calldata from interface
Browse files Browse the repository at this point in the history
  • Loading branch information
gitofdeepanshu committed Nov 14, 2023
1 parent 5f251db commit 6fdc77c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion precompiles/unified-accounts/UnifiedAccounts.sol
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ interface UnifiedAccounts {
/// (mapped address, true)
/// If not mapped
/// (default address, false)
function get_evm_address_or_default(bytes32 calldata accountId) external view returns (address,bool);
function get_evm_address_or_default(bytes32 accountId) external view returns (address,bool);

/// Gets the account id associated with given evm address. If no mapping exists, then return the default evm address.
/// @param evmAddress: The evm address for which you want the account id for.
Expand Down

0 comments on commit 6fdc77c

Please sign in to comment.