From b66bb00c776adfa2d999b2d923f9fd3b03f3142b Mon Sep 17 00:00:00 2001 From: rishflab Date: Tue, 16 Feb 2021 13:32:21 +1100 Subject: [PATCH] Remove stale code --- swap/src/bitcoin.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/swap/src/bitcoin.rs b/swap/src/bitcoin.rs index a2dbca29..ad5f4fc0 100644 --- a/swap/src/bitcoin.rs +++ b/swap/src/bitcoin.rs @@ -233,11 +233,6 @@ pub trait TransactionBlockHeight { async fn transaction_block_height(&self, txid: Txid) -> Result; } -#[async_trait] -pub trait WaitForBlockHeight { - async fn wait_for_block_height(&self, height: BlockHeight); -} - #[async_trait] pub trait GetRawTransaction { async fn get_raw_transaction(&self, txid: Txid) -> Result;