fix: signer test (#2028)
This commit is contained in:
parent
b5eddf1985
commit
bab3e97d3b
|
@ -164,7 +164,8 @@ async fn typed_txs() {
|
||||||
.from(address)
|
.from(address)
|
||||||
.to(address)
|
.to(address)
|
||||||
.nonce(nonce + 2)
|
.nonce(nonce + 2)
|
||||||
.max_fee_per_gas(gas_price);
|
.max_fee_per_gas(gas_price)
|
||||||
|
.max_priority_fee_per_gas(gas_price);
|
||||||
let tx3 = provider.send_transaction(tx, bn).await.unwrap();
|
let tx3 = provider.send_transaction(tx, bn).await.unwrap();
|
||||||
|
|
||||||
futures_util::join!(check_tx(tx1, 0), check_tx(tx2, 1), check_tx(tx3, 2),);
|
futures_util::join!(check_tx(tx1, 0), check_tx(tx2, 1), check_tx(tx3, 2),);
|
||||||
|
|
Loading…
Reference in New Issue