We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a3a830 commit 5ece0dbCopy full SHA for 5ece0db
bin/submit_transaction.rs
@@ -69,6 +69,9 @@ async fn main() {
69
70
async fn send_transaction(provider: &HostProvider, recipient_address: Address) {
71
// construct simple transaction to send ETH to a recipient
72
+ let nonce = provider.get_transaction_count(provider.default_signer_address()).await.unwrap();
73
+ debug!(nonce, "transaction submitter - nonce");
74
+
75
let tx = TransactionRequest::default()
76
.with_from(provider.default_signer_address())
77
.with_to(recipient_address)
0 commit comments