Adding POST /tx API to bitcoind mode

fixes #777
This commit is contained in:
softsimon
2021-09-26 22:18:44 +04:00
parent 9a6efceb34
commit 86c877c8e9
5 changed files with 22 additions and 0 deletions

View File

@@ -56,6 +56,10 @@ class ElectrsApi implements AbstractBitcoinApi {
$getAddressPrefix(prefix: string): string[] {
throw new Error('Method not implemented.');
}
$sendRawTransaction(rawTransaction: string): Promise<string> {
throw new Error('Method not implemented.');
}
}
export default ElectrsApi;