@@ -124,9 +124,9 @@ impl InMemoryNode {
124
124
125
125
#[ cfg( test) ]
126
126
mod tests {
127
- use alloy_dyn_abi :: { DynSolValue , FunctionExt , JsonAbiExt } ;
128
- use alloy_json_abi :: { Function , Param } ;
129
- use alloy_primitives :: { Address as AlloyAddress , U256 as AlloyU256 } ;
127
+ use alloy :: dyn_abi :: { DynSolValue , FunctionExt , JsonAbiExt } ;
128
+ use alloy :: json_abi :: { Function , Param , StateMutability } ;
129
+ use alloy :: primitives :: { Address as AlloyAddress , U256 as AlloyU256 } ;
130
130
use anvil_zksync_config:: constants:: DEFAULT_ACCOUNT_BALANCE ;
131
131
use zksync_types:: {
132
132
transaction_request:: CallRequestBuilder , utils:: deployed_address_create, Address ,
@@ -209,7 +209,7 @@ mod tests {
209
209
components: vec![ ] ,
210
210
internal_type: None ,
211
211
} ] ,
212
- state_mutability : alloy_json_abi :: StateMutability :: NonPayable ,
212
+ state_mutability : StateMutability :: NonPayable ,
213
213
} ;
214
214
215
215
let calldata = func
@@ -284,7 +284,7 @@ mod tests {
284
284
internal_type: None ,
285
285
} ] ,
286
286
outputs : vec ! [ ] ,
287
- state_mutability : alloy_json_abi :: StateMutability :: NonPayable ,
287
+ state_mutability : StateMutability :: NonPayable ,
288
288
} ;
289
289
290
290
let calldata = func
@@ -330,7 +330,7 @@ mod tests {
330
330
name : "shouldRevert" . to_string ( ) ,
331
331
inputs : vec ! [ ] ,
332
332
outputs : vec ! [ ] ,
333
- state_mutability : alloy_json_abi :: StateMutability :: NonPayable ,
333
+ state_mutability : StateMutability :: NonPayable ,
334
334
} ;
335
335
336
336
// trace a call to the primary contract
0 commit comments