We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3dcf0fc commit a794c6eCopy full SHA for a794c6e
backend/src/api/bitcoin/esplora-api.ts
@@ -325,7 +325,7 @@ class ElectrsApi implements AbstractBitcoinApi {
325
}
326
327
$sendRawTransaction(rawTransaction: string): Promise<string> {
328
- throw new Error('Method not implemented.');
+ return this.failoverRouter.$post<string>('/tx', rawTransaction, 'string');
329
330
331
$testMempoolAccept(rawTransactions: string[], maxfeerate?: number): Promise<TestMempoolAcceptResult[]> {
0 commit comments