File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -509,7 +509,7 @@ mod tests {
509
509
510
510
#[ test]
511
511
fn test_account_with_storage ( ) {
512
- let mut storage = HashMap :: default ( ) ;
512
+ let mut storage = HashMap :: < StorageKey , EvmStorageSlot > :: default ( ) ;
513
513
let key1 = StorageKey :: from ( 1 ) ;
514
514
let key2 = StorageKey :: from ( 2 ) ;
515
515
let slot1 = EvmStorageSlot :: new ( StorageValue :: from ( 10 ) , 0 ) ;
@@ -621,7 +621,7 @@ mod tests {
621
621
622
622
let slot_key = StorageKey :: from ( 42 ) ;
623
623
let slot_value = EvmStorageSlot :: new ( StorageValue :: from ( 123 ) , 0 ) ;
624
- let mut storage = HashMap :: default ( ) ;
624
+ let mut storage = HashMap :: < StorageKey , EvmStorageSlot > :: default ( ) ;
625
625
storage. insert ( slot_key, slot_value. clone ( ) ) ;
626
626
627
627
// Chain multiple builder methods together
You can’t perform that action at this time.
0 commit comments