Skip to content

Commit 94403ca

Browse files
committed
fix: make clippy happy
Signed-off-by: Gregory Edison <[email protected]>
1 parent 94f1046 commit 94403ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/storage/provider/src/providers/blockchain_provider.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2272,7 +2272,7 @@ mod tests {
22722272

22732273
// Invalid/Non-existent argument should return `None`
22742274
{
2275-
call_method!($arg_count, provider, $method, |_,_,_,_| ( ($invalid_args, None)), tx_num, tx_hash, &in_memory_blocks[0], &receipts);
2275+
call_method!($arg_count, provider, $method, |_,_,_,_| ($invalid_args, None), tx_num, tx_hash, &in_memory_blocks[0], &receipts);
22762276
}
22772277

22782278
// Check that the item is only in memory and not in database
@@ -2283,7 +2283,7 @@ mod tests {
22832283
call_method!($arg_count, provider, $method, |_,_,_,_| (args.clone(), expected_item), tx_num, tx_hash, last_mem_block, &receipts);
22842284

22852285
// Ensure the item is not in storage
2286-
call_method!($arg_count, provider.database, $method, |_,_,_,_| ( (args, None)), tx_num, tx_hash, last_mem_block, &receipts);
2286+
call_method!($arg_count, provider.database, $method, |_,_,_,_| (args, None), tx_num, tx_hash, last_mem_block, &receipts);
22872287
}
22882288
)*
22892289
}};

0 commit comments

Comments
 (0)