fix: signer test (#2028)

This commit is contained in:
DaniPopes 2023-01-08 17:58:04 +01:00 committed by GitHub
parent b5eddf1985
commit bab3e97d3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -164,7 +164,8 @@ async fn typed_txs() {
.from(address)
.to(address)
.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();
futures_util::join!(check_tx(tx1, 0), check_tx(tx2, 1), check_tx(tx3, 2),);