From a245ee28c13efc3f7bd03660eaa00d69a755df94 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Sat, 15 Oct 2022 21:07:52 -0400 Subject: [PATCH] Correction for previous commit --- processor/src/wallet.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/processor/src/wallet.rs b/processor/src/wallet.rs index 6cbdf39a..4ef2ed2b 100644 --- a/processor/src/wallet.rs +++ b/processor/src/wallet.rs @@ -236,7 +236,7 @@ impl Wallet { // TODO: Remove pub async fn is_confirmed(&mut self, tx: &[u8]) -> Result { - self.coin.is_confirmed(tx, self.scanned_height + C::CONFIRMATIONS) + self.coin.is_confirmed(tx, self.scanned_height() + C::CONFIRMATIONS).await } pub async fn poll(&mut self) -> Result<(), CoinError> {