use bulk /txs endpoint to check cached rbf tx status

This commit is contained in:
Mononaut
2023-08-05 16:08:54 +09:00
parent 2339a0771e
commit 38909cfc42
4 changed files with 62 additions and 0 deletions

View File

@@ -60,6 +60,10 @@ class BitcoinApi implements AbstractBitcoinApi {
});
}
$getRawTransactions(txids: string[]): Promise<IEsploraApi.Transaction[]> {
throw new Error('Method getRawTransactions not supported by the Bitcoin RPC API.');
}
$getMempoolTransactions(txids: string[]): Promise<IEsploraApi.Transaction[]> {
throw new Error('Method getMempoolTransactions not supported by the Bitcoin RPC API.');
}