Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
MexicanAce committed Sep 25, 2023
1 parent 064bdcc commit f5877fe
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -717,11 +717,7 @@ impl<S: ForkSource + std::fmt::Debug> InMemoryNode<S> {
let mut block_hashes = HashMap::<u64, H256>::new();
block_hashes.insert(0, H256::zero());
let mut blocks = HashMap::<H256, Block<TransactionVariant>>::new();
blocks.insert(
H256::zero(),
create_empty_block(0, 0, 1),
);

blocks.insert(H256::zero(), create_empty_block(0, 0, 1));

InMemoryNodeInner {
current_timestamp: NON_FORK_FIRST_BLOCK_TIMESTAMP,
Expand Down

0 comments on commit f5877fe

Please sign in to comment.