From ca0045482c711f48e44f97cf0c94d24d284e9ab3 Mon Sep 17 00:00:00 2001 From: James Ray <16969914+jamesray1@users.noreply.github.com> Date: Fri, 23 Mar 2018 19:16:20 +1100 Subject: [PATCH] Returns number of topcis to take fr.. (#8199) --- ethcore/evm/src/instructions.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethcore/evm/src/instructions.rs b/ethcore/evm/src/instructions.rs index 83be0c954..3fb9fb933 100644 --- a/ethcore/evm/src/instructions.rs +++ b/ethcore/evm/src/instructions.rs @@ -81,7 +81,7 @@ fn test_get_swap_position() { assert_eq!(get_swap_position(SWAP10), 10); } -/// Returns number of topcis to take from stack +/// Returns number of topics to take from stack /// LOG0 -> 0 pub fn get_log_topics (i: Instruction) -> usize { assert!(i >= LOG0 && i <= LOG4);