2020-09-24 21:33:09 +00:00
|
|
|
#[tokio::test]
|
|
|
|
#[cfg(not(feature = "celo"))]
|
|
|
|
async fn nonce_manager() {
|
|
|
|
use ethers_core::types::*;
|
2020-10-08 15:56:36 +00:00
|
|
|
use ethers_middleware::{nonce_manager::NonceManagerMiddleware, signer::SignerMiddleware};
|
2020-09-24 21:33:09 +00:00
|
|
|
use ethers_providers::{Http, Middleware, Provider};
|
2020-10-02 08:41:16 +00:00
|
|
|
use ethers_signers::LocalWallet;
|
2020-09-24 21:33:09 +00:00
|
|
|
use std::convert::TryFrom;
|
|
|
|
use std::time::Duration;
|
|
|
|
|
|
|
|
let provider =
|
|
|
|
Provider::<Http>::try_from("https://rinkeby.infura.io/v3/fd8b88b56aa84f6da87b60f5441d6778")
|
|
|
|
.unwrap()
|
|
|
|
.interval(Duration::from_millis(2000u64));
|
|
|
|
|
|
|
|
let wallet = "59c37cb6b16fa2de30675f034c8008f890f4b2696c729d6267946d29736d73e4"
|
2020-10-02 08:41:16 +00:00
|
|
|
.parse::<LocalWallet>()
|
2020-09-24 21:33:09 +00:00
|
|
|
.unwrap();
|
|
|
|
let address = wallet.address();
|
|
|
|
|
2020-10-08 15:56:36 +00:00
|
|
|
let provider = SignerMiddleware::new(provider, wallet);
|
2020-09-24 21:33:09 +00:00
|
|
|
|
|
|
|
// the nonce manager must be over the Client so that it overrides the nonce
|
|
|
|
// before the client gets it
|
2020-10-08 15:56:36 +00:00
|
|
|
let provider = NonceManagerMiddleware::new(provider, address);
|
2020-09-24 21:33:09 +00:00
|
|
|
|
|
|
|
let nonce = provider
|
2021-03-16 19:46:07 +00:00
|
|
|
.get_transaction_count(address, Some(BlockNumber::Pending.into()))
|
2020-09-24 21:33:09 +00:00
|
|
|
.await
|
|
|
|
.unwrap()
|
|
|
|
.as_u64();
|
|
|
|
|
|
|
|
let mut tx_hashes = Vec::new();
|
|
|
|
for _ in 0..10 {
|
|
|
|
let tx = provider
|
|
|
|
.send_transaction(TransactionRequest::pay(address, 100u64), None)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
2020-12-17 11:26:01 +00:00
|
|
|
tx_hashes.push(*tx);
|
2020-09-24 21:33:09 +00:00
|
|
|
}
|
|
|
|
|
2020-11-30 09:33:06 +00:00
|
|
|
// sleep a bit to ensure there's no flakiness in the test
|
|
|
|
std::thread::sleep(std::time::Duration::new(3, 0));
|
|
|
|
|
2020-09-24 21:33:09 +00:00
|
|
|
let mut nonces = Vec::new();
|
|
|
|
for tx_hash in tx_hashes {
|
|
|
|
nonces.push(
|
|
|
|
provider
|
|
|
|
.get_transaction(tx_hash)
|
|
|
|
.await
|
|
|
|
.unwrap()
|
|
|
|
.unwrap()
|
|
|
|
.nonce
|
|
|
|
.as_u64(),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_eq!(nonces, (nonce..nonce + 10).collect::<Vec<_>>())
|
|
|
|
}
|