You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We cannot use current subxt client in such a way, that one task sent an extrinsic and waiting for it to be finalized, while the other tries to submit another extrinsic.
This is because Nonce for an account that's included in the transaction is only updated after finalization, and later transaction becomes outdated.
When sending calls from the pipeline/server we'd like to take into the account the transactions that are currently in the pool.
We cannot use current subxt client in such a way, that one task sent an extrinsic and waiting for it to be finalized, while the other tries to submit another extrinsic.
This is because Nonce for an account that's included in the transaction is only updated after finalization, and later transaction becomes outdated.
When sending calls from the pipeline/server we'd like to take into the account the transactions that are currently in the pool.
system_accountNextIndex
alternative? paritytech/json-rpc-interface-spec#156 (comment)I guess I'm gonna go for getting the nonce from RPC txpool and tracking it manually:
The text was updated successfully, but these errors were encountered: