Skip to content
This repository has been archived by the owner on Jun 18, 2024. It is now read-only.

Commit

Permalink
build: update ethers to 0.13.0 (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
oblique authored Jun 20, 2022
1 parent 1ebfeb0 commit 06f9355
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ futures-core = "0.3"
pin-project = "1"

# Ethers
ethers = {version = "^0.6.0", default-features = false }
ethers = { version = "^0.13.0", default-features = false }

[dev-dependencies]
tokio = { version = "1.7.1", features = ["macros", "rt-multi-thread"] }
ethers = {version = "^0.6.0", default-features = false }
ethers = { version = "^0.13.0", default-features = false }
anyhow = "1.0"
2 changes: 1 addition & 1 deletion examples/advanced.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ async fn main() -> Result<()> {
};
let signature = client.signer().sign_transaction(&tx).await?;
let bundle = BundleRequest::new()
.push_transaction(tx.rlp_signed(client.signer().chain_id(), &signature))
.push_transaction(tx.rlp_signed(&signature))
.set_block(block_number + 1)
.set_simulation_block(block_number)
.set_simulation_timestamp(0);
Expand Down

0 comments on commit 06f9355

Please sign in to comment.