Skip to content

Commit

Permalink
chore: fix bitcoin-sim error type
Browse files Browse the repository at this point in the history
Signed-off-by: Gregory Hill <[email protected]>
  • Loading branch information
gregdhill committed Mar 29, 2023
1 parent 4cad56b commit 165d21a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion runtime/src/integration/bitcoin_simulator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,12 @@ impl BitcoinCoreApi for MockBitcoinCore {
unimplemented!()
}

async fn get_tx_for_op_return(&self, address: Address, amount: u128, data: H256) -> Result<Option<Txid>, Error> {
async fn get_tx_for_op_return(
&self,
address: Address,
amount: u128,
data: H256,
) -> Result<Option<Txid>, BitcoinError> {
unimplemented!()
}
}

0 comments on commit 165d21a

Please sign in to comment.