Skip to content

Commit

Permalink
fix: fix commnets
Browse files Browse the repository at this point in the history
  • Loading branch information
Eikix committed Oct 3, 2023
1 parent 269cd0e commit ad0c6a5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ use evm::machine::{Machine, MachineCurrentContextTrait};
use evm::memory::MemoryTrait;
use evm::stack::StackTrait;
use integer::u32_overflowing_add;
use starknet::EthAddress;
use utils::helpers::{load_word};
use utils::traits::{EthAddressIntoU256};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ fn test_caller() {

// Then
assert(machine.stack.len() == 1, 'stack should have one element');
assert(machine.stack.peek().unwrap() == 'evm_address'.into(), 'should be evm_address');
assert(machine.stack.peek().unwrap() == evm_address().into(), 'should be evm_address');
}


Expand Down

0 comments on commit ad0c6a5

Please sign in to comment.