mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 03:31:10 +00:00
Get account nonce via state_call (#1002)
This commit is contained in:
@@ -27,7 +27,7 @@ pub use substrate::SubstrateConfig;
|
||||
pub trait Config: 'static {
|
||||
/// Account index (aka nonce) type. This stores the number of previous
|
||||
/// transactions associated with a sender account.
|
||||
type Index: Debug + Copy + DeserializeOwned + Into<u64>;
|
||||
type Index: Debug + Copy + Decode + Into<u64>;
|
||||
|
||||
/// The output of the `Hasher` function.
|
||||
type Hash: Debug
|
||||
@@ -42,7 +42,7 @@ pub trait Config: 'static {
|
||||
+ PartialEq;
|
||||
|
||||
/// The account ID type.
|
||||
type AccountId: Debug + Clone + Serialize;
|
||||
type AccountId: Debug + Clone + Encode;
|
||||
|
||||
/// The address type.
|
||||
type Address: Debug + Encode + From<Self::AccountId>;
|
||||
|
||||
@@ -34,7 +34,6 @@
|
||||
use std::sync::Arc;
|
||||
|
||||
use codec::{Decode, Encode};
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::{error::Error, utils::PhantomDataSendSync, Config, Metadata};
|
||||
|
||||
@@ -179,16 +178,6 @@ impl<T: Config> Rpc<T> {
|
||||
self.client.request("system_version", rpc_params![]).await
|
||||
}
|
||||
|
||||
/// Fetch the current nonce for the given account ID.
|
||||
pub async fn system_account_next_index<AccountId: Serialize>(
|
||||
&self,
|
||||
account: &AccountId,
|
||||
) -> Result<T::Index, Error> {
|
||||
self.client
|
||||
.request("system_accountNextIndex", rpc_params![account])
|
||||
.await
|
||||
}
|
||||
|
||||
/// Get a header
|
||||
pub async fn header(&self, hash: Option<T::Hash>) -> Result<Option<T::Header>, Error> {
|
||||
let params = rpc_params![hash];
|
||||
|
||||
@@ -174,11 +174,15 @@ where
|
||||
T: Config,
|
||||
C: OnlineClientT<T>,
|
||||
{
|
||||
// Get the next account nonce to use.
|
||||
async fn next_account_nonce(&self, account_id: &T::AccountId) -> Result<T::Index, Error> {
|
||||
/// Get the account nonce for a given account ID.
|
||||
pub async fn account_nonce(&self, account_id: &T::AccountId) -> Result<T::Index, Error> {
|
||||
self.client
|
||||
.rpc()
|
||||
.system_account_next_index(account_id)
|
||||
.state_call(
|
||||
"AccountNonceApi_account_nonce",
|
||||
Some(&account_id.encode()),
|
||||
None,
|
||||
)
|
||||
.await
|
||||
}
|
||||
|
||||
@@ -192,7 +196,7 @@ where
|
||||
where
|
||||
Call: TxPayload,
|
||||
{
|
||||
let account_nonce = self.next_account_nonce(account_id).await?;
|
||||
let account_nonce = self.account_nonce(account_id).await?;
|
||||
self.create_partial_signed_with_nonce(call, account_nonce, other_params)
|
||||
}
|
||||
|
||||
@@ -207,7 +211,7 @@ where
|
||||
Call: TxPayload,
|
||||
Signer: SignerT<T>,
|
||||
{
|
||||
let account_nonce = self.next_account_nonce(signer.account_id()).await?;
|
||||
let account_nonce = self.account_nonce(signer.account_id()).await?;
|
||||
self.create_signed_with_nonce(call, signer, account_nonce, other_params)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user