Skip to content

Commit

Permalink
fix dup pbh test
Browse files Browse the repository at this point in the history
  • Loading branch information
0xKitsune committed Dec 20, 2024
1 parent 123d899 commit c86e75a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion world-chain-builder/crates/world/node/tests/e2e.rs
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ async fn test_dup_pbh_nonce() -> eyre::Result<()> {

let raw_tx_0 = ctx.raw_pbh_tx_bytes(signer.clone(), 0, 0).await;
ctx.node.rpc.inject_tx(raw_tx_0.clone()).await?;
let raw_tx_1 = ctx.raw_pbh_tx_bytes(signer.clone(), 0, 1).await;
let raw_tx_1 = ctx.raw_pbh_tx_bytes(signer.clone(), 0, 0).await;

// Now that the nullifier has successfully been stored in
// the `ExecutedPbhNullifierTable`, inserting a new tx with the
Expand Down
2 changes: 1 addition & 1 deletion world-chain-builder/crates/world/payload/src/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ use reth_provider::{
};
use reth_transaction_pool::error::{InvalidPoolTransactionError, PoolTransactionError};
use reth_transaction_pool::{BestTransactions, ValidPoolTransaction};
use revm::{Database, StateBuilder};
use revm::Database;
use revm_primitives::{
BlockEnv, Bytes, CfgEnvWithHandlerCfg, EVMError, EnvWithHandlerCfg, InvalidTransaction,
ResultAndState, TxEnv, B256, U256,
Expand Down

0 comments on commit c86e75a

Please sign in to comment.