2020-09-24 21:33:09 +00:00
|
|
|
use crate::Middleware;
|
2020-06-21 08:09:19 +00:00
|
|
|
use crate::{
|
2020-06-22 08:44:08 +00:00
|
|
|
stream::{interval, DEFAULT_POLL_INTERVAL},
|
2020-09-23 08:04:54 +00:00
|
|
|
JsonRpcClient, PinBoxFut, Provider, ProviderError,
|
2020-06-21 08:09:19 +00:00
|
|
|
};
|
2020-06-15 12:40:06 +00:00
|
|
|
use ethers_core::types::{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
|
|
|
};
|
|
|
|
|
|
|
|
/// 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.
|
|
|
|
#[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>,
|
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 {
|
|
|
|
let fut = Box::pin(provider.get_transaction_receipt(tx_hash));
|
|
|
|
Self {
|
|
|
|
tx_hash,
|
|
|
|
confirmations: 1,
|
|
|
|
provider,
|
|
|
|
state: PendingTxState::GettingReceipt(fut),
|
2020-06-22 08:44:08 +00:00
|
|
|
interval: Box::new(interval(DEFAULT_POLL_INTERVAL)),
|
2020-06-15 12:40:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets the number of confirmations for the pending transaction to resolve
|
|
|
|
/// to a receipt
|
|
|
|
pub fn confirmations(mut self, confs: usize) -> Self {
|
|
|
|
self.confirmations = confs;
|
|
|
|
self
|
|
|
|
}
|
2020-06-21 08:09:19 +00:00
|
|
|
|
|
|
|
/// Sets the polling interval
|
2020-06-22 08:44:08 +00:00
|
|
|
pub fn interval<T: Into<Duration>>(mut self, duration: T) -> Self {
|
|
|
|
self.interval = Box::new(interval(duration.into()));
|
2020-06-21 08:09:19 +00:00
|
|
|
self
|
|
|
|
}
|
2020-06-15 12:40:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, P: JsonRpcClient> Future for PendingTransaction<'a, P> {
|
|
|
|
type Output = Result<TransactionReceipt, ProviderError>;
|
|
|
|
|
|
|
|
fn poll(self: Pin<&mut Self>, ctx: &mut Context) -> Poll<Self::Output> {
|
|
|
|
let this = self.project();
|
|
|
|
|
|
|
|
match this.state {
|
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-02-16 17:10:26 +00:00
|
|
|
if let Ok(Some(receipt)) = futures_util::ready!(fut.as_mut().poll(ctx)) {
|
|
|
|
*this.state = PendingTxState::CheckingReceipt(Box::new(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) => {
|
|
|
|
// If we requested more than 1 confirmation, we need to compare the receipt's
|
|
|
|
// block number and the current block
|
|
|
|
if *this.confirmations > 1 {
|
|
|
|
let fut = Box::pin(this.provider.get_block_number());
|
|
|
|
*this.state =
|
2020-06-17 08:02:03 +00:00
|
|
|
PendingTxState::GettingBlockNumber(fut, Box::new(*receipt.clone()));
|
|
|
|
|
|
|
|
// Schedule the waker to poll again
|
|
|
|
ctx.waker().wake_by_ref();
|
2020-06-15 12:40:06 +00:00
|
|
|
} else {
|
|
|
|
let receipt = *receipt.clone();
|
|
|
|
*this.state = PendingTxState::Completed;
|
|
|
|
return Poll::Ready(Ok(receipt));
|
|
|
|
}
|
|
|
|
}
|
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());
|
|
|
|
*this.state = PendingTxState::GettingBlockNumber(fut, receipt.clone());
|
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) => {
|
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");
|
|
|
|
|
|
|
|
let current_block = futures_util::ready!(fut.as_mut().poll(ctx))?;
|
|
|
|
|
|
|
|
// 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 {
|
2020-06-15 12:40:06 +00:00
|
|
|
let receipt = *receipt.clone();
|
|
|
|
*this.state = PendingTxState::Completed;
|
|
|
|
return Poll::Ready(Ok(receipt));
|
|
|
|
} else {
|
2020-12-24 20:23:05 +00:00
|
|
|
tracing::trace!(tx_hash = ?this.tx_hash, "confirmations {}/{}", current_block - inclusion_block + 1, this.confirmations);
|
2020-12-24 16:33:22 +00:00
|
|
|
*this.state = PendingTxState::PausedGettingBlockNumber(receipt.clone());
|
|
|
|
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> {
|
2020-07-10 06:59:29 +00:00
|
|
|
/// Waiting for interval to elapse before calling API again
|
|
|
|
PausedGettingReceipt,
|
|
|
|
|
2020-06-15 12:40:06 +00:00
|
|
|
/// Polling the blockchain for the receipt
|
2020-09-17 11:06:56 +00:00
|
|
|
GettingReceipt(PinBoxFut<'a, Option<TransactionReceipt>>),
|
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
|
|
|
|
PausedGettingBlockNumber(Box<TransactionReceipt>),
|
|
|
|
|
2020-06-15 12:40:06 +00:00
|
|
|
/// Polling the blockchain for the current block number
|
|
|
|
GettingBlockNumber(PinBoxFut<'a, U64>, Box<TransactionReceipt>),
|
|
|
|
|
|
|
|
/// 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
|
|
|
|
CheckingReceipt(Box<TransactionReceipt>),
|
|
|
|
|
|
|
|
/// 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 {
|
|
|
|
PendingTxState::GettingReceipt(_) => "GettingReceipt",
|
2020-07-10 06:59:29 +00:00
|
|
|
PendingTxState::PausedGettingReceipt => "PausedGettingReceipt",
|
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",
|
|
|
|
};
|
|
|
|
|
|
|
|
f.debug_struct("PendingTxState")
|
|
|
|
.field("state", &state)
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|