@@ -231,7 +231,7 @@ impl ExecuteSignedTransaction {
231231 ///
232232 /// This is useful if you want to send the transaction to a non-default network configuration (e.g, custom RPC URL, sandbox).
233233 /// Please note that if the transaction is not presigned, it will be signed with the network's nonce and block hash
234- /// and sent depending on signer mode.
234+ /// and sent in sequential mode to avoid nonce conflicts
235235 ///
236236 /// Returns a [`TransactionResult`] which is either:
237237 /// - [`TransactionResult::Pending`] if `wait_until` is `None` or `Included` (no execution data available yet)
@@ -258,7 +258,7 @@ impl ExecuteSignedTransaction {
258258
259259 // If the transaction is signed, send it to the network.
260260 // If the transaction is not signed, sign it and send
261- // to the network depending on signer mode.
261+ // in sequential mode to avoid nonce conflicts
262262 match signed {
263263 Some ( signed) => Self :: send_impl ( network, signed, self . wait_until ) . await ,
264264 None => {
@@ -518,7 +518,7 @@ impl ExecuteMetaTransaction {
518518 ///
519519 /// This is useful if you want to send the transaction to a non-default network configuration (e.g, custom RPC URL, sandbox).
520520 /// Please note that if the transaction is not presigned, it will be sign with the network's nonce and block hash
521- /// and sent depending on signer mode.
521+ /// and sent in sequential mode to avoid nonce conflicts
522522 pub async fn send_to (
523523 mut self ,
524524 network : & NetworkConfig ,
@@ -544,7 +544,7 @@ impl ExecuteMetaTransaction {
544544
545545 // If the transaction is signed, send it to the relayer.
546546 // If the transaction is not signed, sign it and send
547- // depending on signer mode.
547+ // in sequential mode to avoid nonce conflicts
548548 match signed {
549549 Some ( signed) => Self :: send_impl ( network, signed) . await ,
550550 None => {
0 commit comments