We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 780d132 commit 2eded47Copy full SHA for 2eded47
tesseract/messaging/evm/src/tx.rs
@@ -358,7 +358,7 @@ pub async fn submit_messages(
358
for (idx, tx) in tx_requests.into_iter().enumerate() {
359
// Fetch the pending nonce upfront so we can reuse it if the tx gets stuck.
360
let nonce = client.signer.get_transaction_count(from).await?;
361
- let tx = tx.nonce(nonce);
+ let tx = tx.nonce(nonce).transaction_type(0);
362
363
// Retry the send on rate limits.
364
let pending = loop {
0 commit comments