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> {