Skip to content

Commit

Permalink
Fix args in wrapped imports
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuajbouw committed Jun 19, 2021
1 parent 60a426b commit 7b94c67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/near-vm-runner/src/imports.rs
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,8 @@ wrapped_imports! {
keccak256<[value_len: u64, value_ptr: u64, register_id: u64] -> []>,
keccak512<[value_len: u64, value_ptr: u64, register_id: u64] -> []>,
#["protocol_feature_evm", EVM] ripemd160<[value_len: u64, value_ptr: u64, register_id: u64] -> []>,
#["protocol_feature_evm", EVM] blake2b<[rounds: u32, state_len: u64, state_ptr: u64, message_len: u64, message_ptr: u64, t: u64, f0: u64, f1: u64, register_id: u64] -> []>,
#["protocol_feature_evm", EVM] blake2s<[rounds: u32, state_len: u64, state_ptr: u64, message_len: u64, message_ptr: u64, t0: u32, t1: u32, f0: u32, f1: u32, register_id: u64] -> []>,
#["protocol_feature_evm", EVM] blake2b<[rounds: u32, state_ptr: u64, message_len: u64, message_ptr: u64, t: u64, f0: u64, f1: u64, register_id: u64] -> []>,
#["protocol_feature_evm", EVM] blake2s<[rounds: u32, state_ptr: u64, message_len: u64, message_ptr: u64, t0: u32, t1: u32, f0: u32, f1: u32, register_id: u64] -> []>,
#["protocol_feature_evm", EVM] ecrecover<[hash_ptr: u64, sig_ptr: u64, register_id: u64] -> [u64]>,
// #####################
// # Miscellaneous API #
Expand Down

0 comments on commit 7b94c67

Please sign in to comment.