Skip to content

Commit

Permalink
replace declare with abstract
Browse files Browse the repository at this point in the history
  • Loading branch information
RaaCT0R committed Feb 12, 2024
1 parent 7f98fe8 commit e9a2d28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/chains/bitcoin/lib/network/AbstractBitcoinNetwork.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ abstract class AbstractBitcoinNetwork extends AbstractUtxoChainNetwork<
BitcoinUtxo
> {
// TODO: uncomment this line (local:ergo/rosen-bridge/utils#169)
// declare extractor: BitcoinRosenExtractor;
// abstract extractor: BitcoinRosenExtractor;

/**
* submits a transaction
* @param transaction the transaction
*/
declare submitTransaction: (transaction: Psbt) => Promise<void>;
abstract submitTransaction: (transaction: Psbt) => Promise<void>;

/**
* gets a utxo from the network
Expand Down

0 comments on commit e9a2d28

Please sign in to comment.