2020-06-21 08:09:19 +00:00
|
|
|
use crate::{
|
2020-06-22 08:44:08 +00:00
|
|
|
stream::{interval, DEFAULT_POLL_INTERVAL},
|
2021-10-29 12:29:35 +00:00
|
|
|
JsonRpcClient, Middleware, PinBoxFut, Provider, ProviderError,
|
2020-06-21 08:09:19 +00:00
|
|
|
};
|
2021-07-06 08:06:18 +00:00
|
|
|
use ethers_core::types::{Transaction, TransactionReceipt, TxHash, U64};
|
2020-06-21 08:09:19 +00:00
|
|
|
use futures_core::stream::Stream;
|
|
|
|
use futures_util::stream::StreamExt;
|
2020-06-15 12:40:06 +00:00
|
|
|
use pin_project::pin_project;
|
|
|
|
use std::{
|
|
|
|
fmt,
|
|
|
|
future::Future,
|
|
|
|
ops::Deref,
|
|
|
|
pin::Pin,
|
|
|
|
task::{Context, Poll},
|
2020-06-21 08:09:19 +00:00
|
|
|
time::Duration,
|
2020-06-15 12:40:06 +00:00
|
|
|
};
|
|
|
|
|
2021-08-23 09:56:44 +00:00
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
|
|
use futures_timer::Delay;
|
|
|
|
#[cfg(target_arch = "wasm32")]
|
|
|
|
use wasm_timer::Delay;
|
|
|
|
|
2020-06-15 12:40:06 +00:00
|
|
|
/// A pending transaction is a transaction which has been submitted but is not yet mined.
|
|
|
|
/// `await`'ing on a pending transaction will resolve to a transaction receipt
|
|
|
|
/// once the transaction has enough `confirmations`. The default number of confirmations
|
|
|
|
/// is 1, but may be adjusted with the `confirmations` method. If the transaction does not
|
|
|
|
/// have enough confirmations or is not mined, the future will stay in the pending state.
|
2022-02-09 06:48:03 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
2022-02-08 22:55:35 +00:00
|
|
|
///```
|
2022-02-09 06:48:03 +00:00
|
|
|
/// # use ethers_providers::{Provider, Http};
|
|
|
|
/// # use ethers_core::utils::Ganache;
|
|
|
|
/// # use std::convert::TryFrom;
|
|
|
|
/// use ethers_providers::Middleware;
|
2022-02-08 22:55:35 +00:00
|
|
|
/// use ethers_core::types::TransactionRequest;
|
|
|
|
///
|
|
|
|
/// # #[tokio::main(flavor = "current_thread")]
|
|
|
|
/// # async fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|
|
|
/// # let ganache = Ganache::new().spawn();
|
|
|
|
/// # let client = Provider::<Http>::try_from(ganache.endpoint()).unwrap();
|
|
|
|
/// # let accounts = client.get_accounts().await?;
|
|
|
|
/// # let from = accounts[0];
|
|
|
|
/// # let to = accounts[1];
|
|
|
|
/// # let balance_before = client.get_balance(to, None).await?;
|
|
|
|
/// let tx = TransactionRequest::new().to(to).value(1000).from(from);
|
|
|
|
/// let receipt = client
|
|
|
|
/// .send_transaction(tx, None)
|
|
|
|
/// .await? // PendingTransaction<_>
|
|
|
|
/// .log_msg("Pending transfer hash") // print pending tx hash with message
|
|
|
|
/// .await?; // Result<Option<TransactionReceipt>, _>
|
|
|
|
/// # let _ = receipt;
|
|
|
|
/// # let balance_after = client.get_balance(to, None).await?;
|
|
|
|
/// # assert_eq!(balance_after, balance_before + 1000);
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2020-06-15 12:40:06 +00:00
|
|
|
#[pin_project]
|
|
|
|
pub struct PendingTransaction<'a, P> {
|
|
|
|
tx_hash: TxHash,
|
|
|
|
confirmations: usize,
|
|
|
|
provider: &'a Provider<P>,
|
|
|
|
state: PendingTxState<'a>,
|
2020-06-21 08:09:19 +00:00
|
|
|
interval: Box<dyn Stream<Item = ()> + Send + Unpin>,
|
2022-05-05 14:22:47 +00:00
|
|
|
retries_remaining: usize,
|
2020-06-15 12:40:06 +00:00
|
|
|
}
|
|
|
|
|
2022-05-05 14:22:47 +00:00
|
|
|
const DEFAULT_RETRIES: usize = 3;
|
|
|
|
|
2020-06-15 12:40:06 +00:00
|
|
|
impl<'a, P: JsonRpcClient> PendingTransaction<'a, P> {
|
|
|
|
/// Creates a new pending transaction poller from a hash and a provider
|
|
|
|
pub fn new(tx_hash: TxHash, provider: &'a Provider<P>) -> Self {
|
2021-07-13 19:34:11 +00:00
|
|
|
let delay = Box::pin(Delay::new(DEFAULT_POLL_INTERVAL));
|
2020-06-15 12:40:06 +00:00
|
|
|
Self {
|
|
|
|
tx_hash,
|
|
|
|
confirmations: 1,
|
|
|
|
provider,
|
2021-07-13 19:34:11 +00:00
|
|
|
state: PendingTxState::InitialDelay(delay),
|
2020-06-22 08:44:08 +00:00
|
|
|
interval: Box::new(interval(DEFAULT_POLL_INTERVAL)),
|
2022-05-05 14:22:47 +00:00
|
|
|
retries_remaining: DEFAULT_RETRIES,
|
2020-06-15 12:40:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-14 13:40:15 +00:00
|
|
|
/// Returns the Provider associated with the pending transaction
|
|
|
|
pub fn provider(&self) -> Provider<P>
|
|
|
|
where
|
|
|
|
P: Clone,
|
|
|
|
{
|
|
|
|
self.provider.clone()
|
|
|
|
}
|
|
|
|
|
2022-02-26 14:36:29 +00:00
|
|
|
/// Returns the transaction hash of the pending transaction
|
|
|
|
pub fn tx_hash(&self) -> TxHash {
|
|
|
|
self.tx_hash
|
|
|
|
}
|
|
|
|
|
2020-06-15 12:40:06 +00:00
|
|
|
/// Sets the number of confirmations for the pending transaction to resolve
|
|
|
|
/// to a receipt
|
2021-12-19 04:28:38 +00:00
|
|
|
#[must_use]
|
2020-06-15 12:40:06 +00:00
|
|
|
pub fn confirmations(mut self, confs: usize) -> Self {
|
|
|
|
self.confirmations = confs;
|
|
|
|
self
|
|
|
|
}
|
2020-06-21 08:09:19 +00:00
|
|
|
|
|
|
|
/// Sets the polling interval
|
2021-12-19 04:28:38 +00:00
|
|
|
#[must_use]
|
2020-06-22 08:44:08 +00:00
|
|
|
pub fn interval<T: Into<Duration>>(mut self, duration: T) -> Self {
|
2021-07-13 19:34:11 +00:00
|
|
|
let duration = duration.into();
|
|
|
|
|
|
|
|
self.interval = Box::new(interval(duration));
|
|
|
|
|
|
|
|
if matches!(self.state, PendingTxState::InitialDelay(_)) {
|
|
|
|
self.state = PendingTxState::InitialDelay(Box::pin(Delay::new(duration)))
|
|
|
|
}
|
|
|
|
|
2020-06-21 08:09:19 +00:00
|
|
|
self
|
|
|
|
}
|
2022-05-05 14:22:47 +00:00
|
|
|
|
|
|
|
/// Set retries
|
|
|
|
#[must_use]
|
|
|
|
pub fn retries(mut self, retries: usize) -> Self {
|
|
|
|
self.retries_remaining = retries;
|
|
|
|
self
|
|
|
|
}
|
2020-06-15 12:40:06 +00:00
|
|
|
}
|
|
|
|
|
2022-02-08 22:55:35 +00:00
|
|
|
impl<'a, P> PendingTransaction<'a, P> {
|
|
|
|
/// Allows inspecting the content of a pending transaction in a builder-like way to avoid
|
2022-02-09 06:48:03 +00:00
|
|
|
/// more verbose calls, e.g.:
|
|
|
|
/// `let mined = token.transfer(recipient, amt).send().await?.inspect(|tx| println!(".{}",
|
|
|
|
/// *tx)).await?;`
|
2022-02-08 22:55:35 +00:00
|
|
|
pub fn inspect<F>(self, mut f: F) -> Self
|
|
|
|
where
|
|
|
|
F: FnMut(&Self),
|
|
|
|
{
|
|
|
|
f(&self);
|
|
|
|
self
|
|
|
|
}
|
2022-02-09 06:48:03 +00:00
|
|
|
|
2022-02-08 22:55:35 +00:00
|
|
|
/// Logs the pending transaction hash along with a custom message before it.
|
|
|
|
pub fn log_msg<S: std::fmt::Display>(self, msg: S) -> Self {
|
2022-02-09 06:48:03 +00:00
|
|
|
self.inspect(|s| println!("{}: {:?}", msg, **s))
|
2022-02-08 22:55:35 +00:00
|
|
|
}
|
2022-02-09 06:48:03 +00:00
|
|
|
|
2022-02-08 22:55:35 +00:00
|
|
|
/// Logs the pending transaction's hash
|
|
|
|
pub fn log(self) -> Self {
|
2022-02-09 06:48:03 +00:00
|
|
|
self.inspect(|s| println!("Pending hash: {:?}", **s))
|
2022-02-08 22:55:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-06 08:06:18 +00:00
|
|
|
macro_rules! rewake_with_new_state {
|
|
|
|
($ctx:ident, $this:ident, $new_state:expr) => {
|
|
|
|
*$this.state = $new_state;
|
|
|
|
$ctx.waker().wake_by_ref();
|
2021-10-29 12:29:35 +00:00
|
|
|
return Poll::Pending
|
2021-07-06 08:06:18 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! rewake_with_new_state_if {
|
|
|
|
($condition:expr, $ctx:ident, $this:ident, $new_state:expr) => {
|
|
|
|
if $condition {
|
|
|
|
rewake_with_new_state!($ctx, $this, $new_state);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-06-15 12:40:06 +00:00
|
|
|
impl<'a, P: JsonRpcClient> Future for PendingTransaction<'a, P> {
|
2021-07-06 08:06:18 +00:00
|
|
|
type Output = Result<Option<TransactionReceipt>, ProviderError>;
|
2020-06-15 12:40:06 +00:00
|
|
|
|
|
|
|
fn poll(self: Pin<&mut Self>, ctx: &mut Context) -> Poll<Self::Output> {
|
|
|
|
let this = self.project();
|
|
|
|
|
|
|
|
match this.state {
|
2021-07-13 19:34:11 +00:00
|
|
|
PendingTxState::InitialDelay(fut) => {
|
2022-05-06 15:15:49 +00:00
|
|
|
futures_util::ready!(fut.as_mut().poll(ctx));
|
2021-07-13 19:34:11 +00:00
|
|
|
tracing::debug!("Starting to poll pending tx {:?}", *this.tx_hash);
|
|
|
|
let fut = Box::pin(this.provider.get_transaction(*this.tx_hash));
|
|
|
|
rewake_with_new_state!(ctx, this, PendingTxState::GettingTx(fut));
|
|
|
|
}
|
2021-07-06 08:06:18 +00:00
|
|
|
PendingTxState::PausedGettingTx => {
|
|
|
|
// Wait the polling period so that we do not spam the chain when no
|
|
|
|
// new block has been mined
|
|
|
|
let _ready = futures_util::ready!(this.interval.poll_next_unpin(ctx));
|
|
|
|
let fut = Box::pin(this.provider.get_transaction(*this.tx_hash));
|
|
|
|
*this.state = PendingTxState::GettingTx(fut);
|
|
|
|
ctx.waker().wake_by_ref();
|
|
|
|
}
|
|
|
|
PendingTxState::GettingTx(fut) => {
|
|
|
|
let tx_res = futures_util::ready!(fut.as_mut().poll(ctx));
|
|
|
|
// If the provider errors, just try again after the interval.
|
|
|
|
// nbd.
|
|
|
|
rewake_with_new_state_if!(
|
|
|
|
tx_res.is_err(),
|
|
|
|
ctx,
|
|
|
|
this,
|
|
|
|
PendingTxState::PausedGettingTx
|
|
|
|
);
|
|
|
|
|
|
|
|
let tx_opt = tx_res.unwrap();
|
|
|
|
// If the tx is no longer in the mempool, return Ok(None)
|
|
|
|
if tx_opt.is_none() {
|
2022-05-05 14:22:47 +00:00
|
|
|
if *this.retries_remaining == 0 {
|
|
|
|
tracing::debug!("Dropped from mempool, pending tx {:?}", *this.tx_hash);
|
|
|
|
*this.state = PendingTxState::Completed;
|
|
|
|
return Poll::Ready(Ok(None))
|
|
|
|
}
|
|
|
|
|
|
|
|
*this.retries_remaining -= 1;
|
|
|
|
rewake_with_new_state!(ctx, this, PendingTxState::PausedGettingTx);
|
2021-07-06 08:06:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// If it hasn't confirmed yet, poll again later
|
|
|
|
let tx = tx_opt.unwrap();
|
|
|
|
rewake_with_new_state_if!(
|
|
|
|
tx.block_number.is_none(),
|
|
|
|
ctx,
|
|
|
|
this,
|
|
|
|
PendingTxState::PausedGettingTx
|
|
|
|
);
|
|
|
|
|
|
|
|
// Start polling for the receipt now
|
2021-07-13 19:34:11 +00:00
|
|
|
tracing::debug!("Getting receipt for pending tx {:?}", *this.tx_hash);
|
2021-07-06 08:06:18 +00:00
|
|
|
let fut = Box::pin(this.provider.get_transaction_receipt(*this.tx_hash));
|
2021-07-13 19:34:11 +00:00
|
|
|
rewake_with_new_state!(ctx, this, PendingTxState::GettingReceipt(fut));
|
2021-07-06 08:06:18 +00:00
|
|
|
}
|
2020-07-10 06:59:29 +00:00
|
|
|
PendingTxState::PausedGettingReceipt => {
|
2020-06-21 08:09:19 +00:00
|
|
|
// Wait the polling period so that we do not spam the chain when no
|
|
|
|
// new block has been mined
|
|
|
|
let _ready = futures_util::ready!(this.interval.poll_next_unpin(ctx));
|
2020-07-10 06:59:29 +00:00
|
|
|
let fut = Box::pin(this.provider.get_transaction_receipt(*this.tx_hash));
|
2020-07-13 17:52:33 +00:00
|
|
|
*this.state = PendingTxState::GettingReceipt(fut);
|
|
|
|
ctx.waker().wake_by_ref();
|
2020-07-10 06:59:29 +00:00
|
|
|
}
|
|
|
|
PendingTxState::GettingReceipt(fut) => {
|
2021-07-06 08:06:18 +00:00
|
|
|
if let Ok(receipt) = futures_util::ready!(fut.as_mut().poll(ctx)) {
|
2021-07-13 19:34:11 +00:00
|
|
|
tracing::debug!("Checking receipt for pending tx {:?}", *this.tx_hash);
|
2021-07-06 08:06:18 +00:00
|
|
|
*this.state = PendingTxState::CheckingReceipt(receipt)
|
2020-06-17 08:02:03 +00:00
|
|
|
} else {
|
2020-07-10 06:59:29 +00:00
|
|
|
*this.state = PendingTxState::PausedGettingReceipt
|
2020-06-17 08:02:03 +00:00
|
|
|
}
|
2020-12-17 09:23:10 +00:00
|
|
|
ctx.waker().wake_by_ref();
|
2020-06-15 12:40:06 +00:00
|
|
|
}
|
|
|
|
PendingTxState::CheckingReceipt(receipt) => {
|
2021-07-06 08:06:18 +00:00
|
|
|
rewake_with_new_state_if!(
|
|
|
|
receipt.is_none(),
|
|
|
|
ctx,
|
|
|
|
this,
|
|
|
|
PendingTxState::PausedGettingReceipt
|
|
|
|
);
|
|
|
|
|
2020-06-15 12:40:06 +00:00
|
|
|
// If we requested more than 1 confirmation, we need to compare the receipt's
|
|
|
|
// block number and the current block
|
|
|
|
if *this.confirmations > 1 {
|
2021-10-29 12:29:35 +00:00
|
|
|
tracing::debug!("Waiting on confirmations for pending tx {:?}", *this.tx_hash);
|
2021-07-13 19:34:11 +00:00
|
|
|
|
2020-06-15 12:40:06 +00:00
|
|
|
let fut = Box::pin(this.provider.get_block_number());
|
2021-07-06 08:06:18 +00:00
|
|
|
*this.state = PendingTxState::GettingBlockNumber(fut, receipt.take());
|
2020-06-17 08:02:03 +00:00
|
|
|
|
|
|
|
// Schedule the waker to poll again
|
|
|
|
ctx.waker().wake_by_ref();
|
2020-06-15 12:40:06 +00:00
|
|
|
} else {
|
2021-07-06 08:06:18 +00:00
|
|
|
let receipt = receipt.take();
|
2020-06-15 12:40:06 +00:00
|
|
|
*this.state = PendingTxState::Completed;
|
2021-10-29 12:29:35 +00:00
|
|
|
return Poll::Ready(Ok(receipt))
|
2020-06-15 12:40:06 +00:00
|
|
|
}
|
|
|
|
}
|
2020-07-10 06:59:29 +00:00
|
|
|
PendingTxState::PausedGettingBlockNumber(receipt) => {
|
2020-06-21 08:09:19 +00:00
|
|
|
// Wait the polling period so that we do not spam the chain when no
|
|
|
|
// new block has been mined
|
|
|
|
let _ready = futures_util::ready!(this.interval.poll_next_unpin(ctx));
|
|
|
|
|
2020-07-10 06:59:29 +00:00
|
|
|
// we need to re-instantiate the get_block_number future so that
|
|
|
|
// we poll again
|
|
|
|
let fut = Box::pin(this.provider.get_block_number());
|
2021-07-06 08:06:18 +00:00
|
|
|
*this.state = PendingTxState::GettingBlockNumber(fut, receipt.take());
|
2020-07-13 17:52:33 +00:00
|
|
|
ctx.waker().wake_by_ref();
|
2020-07-10 06:59:29 +00:00
|
|
|
}
|
|
|
|
PendingTxState::GettingBlockNumber(fut, receipt) => {
|
2021-07-06 08:06:18 +00:00
|
|
|
let current_block = futures_util::ready!(fut.as_mut().poll(ctx))?;
|
|
|
|
|
|
|
|
// This is safe so long as we only enter the `GettingBlock`
|
|
|
|
// loop from `CheckingReceipt`, which contains an explicit
|
|
|
|
// `is_none` check
|
|
|
|
let receipt = receipt.take().expect("GettingBlockNumber without receipt");
|
|
|
|
|
2020-06-21 08:09:19 +00:00
|
|
|
// Wait for the interval
|
2020-06-15 12:40:06 +00:00
|
|
|
let inclusion_block = receipt
|
|
|
|
.block_number
|
|
|
|
.expect("Receipt did not have a block number. This should never happen");
|
|
|
|
// if the transaction has at least K confirmations, return the receipt
|
|
|
|
// (subtract 1 since the tx already has 1 conf when it's mined)
|
2020-12-24 20:23:05 +00:00
|
|
|
if current_block > inclusion_block + *this.confirmations - 1 {
|
2021-07-06 08:06:18 +00:00
|
|
|
let receipt = Some(receipt);
|
2020-06-15 12:40:06 +00:00
|
|
|
*this.state = PendingTxState::Completed;
|
2021-10-29 12:29:35 +00:00
|
|
|
return Poll::Ready(Ok(receipt))
|
2020-06-15 12:40:06 +00:00
|
|
|
} else {
|
2020-12-24 20:23:05 +00:00
|
|
|
tracing::trace!(tx_hash = ?this.tx_hash, "confirmations {}/{}", current_block - inclusion_block + 1, this.confirmations);
|
2021-07-06 08:06:18 +00:00
|
|
|
*this.state = PendingTxState::PausedGettingBlockNumber(Some(receipt));
|
2020-12-24 16:33:22 +00:00
|
|
|
ctx.waker().wake_by_ref();
|
2020-06-15 12:40:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
PendingTxState::Completed => {
|
|
|
|
panic!("polled pending transaction future after completion")
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Poll::Pending
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, P> fmt::Debug for PendingTransaction<'a, P> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
f.debug_struct("PendingTransaction")
|
|
|
|
.field("tx_hash", &self.tx_hash)
|
|
|
|
.field("confirmations", &self.confirmations)
|
|
|
|
.field("state", &self.state)
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, P> PartialEq for PendingTransaction<'a, P> {
|
|
|
|
fn eq(&self, other: &Self) -> bool {
|
|
|
|
self.tx_hash == other.tx_hash
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, P> PartialEq<TxHash> for PendingTransaction<'a, P> {
|
|
|
|
fn eq(&self, other: &TxHash) -> bool {
|
|
|
|
&self.tx_hash == other
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, P> Eq for PendingTransaction<'a, P> {}
|
|
|
|
|
|
|
|
impl<'a, P> Deref for PendingTransaction<'a, P> {
|
|
|
|
type Target = TxHash;
|
|
|
|
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
|
|
&self.tx_hash
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// We box the TransactionReceipts to keep the enum small.
|
|
|
|
enum PendingTxState<'a> {
|
2021-07-13 19:34:11 +00:00
|
|
|
/// Initial delay to ensure the GettingTx loop doesn't immediately fail
|
2021-08-23 09:56:44 +00:00
|
|
|
InitialDelay(Pin<Box<Delay>>),
|
2021-07-13 19:34:11 +00:00
|
|
|
|
2020-07-10 06:59:29 +00:00
|
|
|
/// Waiting for interval to elapse before calling API again
|
2021-07-06 08:06:18 +00:00
|
|
|
PausedGettingTx,
|
2020-07-10 06:59:29 +00:00
|
|
|
|
2021-07-06 08:06:18 +00:00
|
|
|
/// Polling The blockchain to see if the Tx has confirmed or dropped
|
|
|
|
GettingTx(PinBoxFut<'a, Option<Transaction>>),
|
2020-06-15 12:40:06 +00:00
|
|
|
|
2020-07-10 06:59:29 +00:00
|
|
|
/// Waiting for interval to elapse before calling API again
|
2021-07-06 08:06:18 +00:00
|
|
|
PausedGettingReceipt,
|
2020-07-10 06:59:29 +00:00
|
|
|
|
2021-07-06 08:06:18 +00:00
|
|
|
/// Polling the blockchain for the receipt
|
|
|
|
GettingReceipt(PinBoxFut<'a, Option<TransactionReceipt>>),
|
2020-06-15 12:40:06 +00:00
|
|
|
|
|
|
|
/// If the pending tx required only 1 conf, it will return early. Otherwise it will
|
|
|
|
/// proceed to the next state which will poll the block number until there have been
|
|
|
|
/// enough confirmations
|
2021-07-06 08:06:18 +00:00
|
|
|
CheckingReceipt(Option<TransactionReceipt>),
|
|
|
|
|
|
|
|
/// Waiting for interval to elapse before calling API again
|
|
|
|
PausedGettingBlockNumber(Option<TransactionReceipt>),
|
|
|
|
|
|
|
|
/// Polling the blockchain for the current block number
|
|
|
|
GettingBlockNumber(PinBoxFut<'a, U64>, Option<TransactionReceipt>),
|
2020-06-15 12:40:06 +00:00
|
|
|
|
|
|
|
/// Future has completed and should panic if polled again
|
|
|
|
Completed,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> fmt::Debug for PendingTxState<'a> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
let state = match self {
|
2021-07-13 19:34:11 +00:00
|
|
|
PendingTxState::InitialDelay(_) => "InitialDelay",
|
2021-07-06 08:06:18 +00:00
|
|
|
PendingTxState::PausedGettingTx => "PausedGettingTx",
|
|
|
|
PendingTxState::GettingTx(_) => "GettingTx",
|
2020-07-10 06:59:29 +00:00
|
|
|
PendingTxState::PausedGettingReceipt => "PausedGettingReceipt",
|
2021-07-06 08:06:18 +00:00
|
|
|
PendingTxState::GettingReceipt(_) => "GettingReceipt",
|
2020-06-15 12:40:06 +00:00
|
|
|
PendingTxState::GettingBlockNumber(_, _) => "GettingBlockNumber",
|
2020-07-10 06:59:29 +00:00
|
|
|
PendingTxState::PausedGettingBlockNumber(_) => "PausedGettingBlockNumber",
|
2020-06-15 12:40:06 +00:00
|
|
|
PendingTxState::CheckingReceipt(_) => "CheckingReceipt",
|
|
|
|
PendingTxState::Completed => "Completed",
|
|
|
|
};
|
|
|
|
|
2021-10-29 12:29:35 +00:00
|
|
|
f.debug_struct("PendingTxState").field("state", &state).finish()
|
2020-06-15 12:40:06 +00:00
|
|
|
}
|
|
|
|
}
|