(rawTx: string | Array<string>)
| 95 | } |
| 96 | |
| 97 | sendTransaction(rawTx: string | Array<string>) { |
| 98 | const txs = typeof rawTx === 'string' ? [rawTx] : rawTx; |
| 99 | return this.asyncCall<string>('sendrawtransaction', txs); |
| 100 | } |
| 101 | |
| 102 | decodeScript(hex: string) { |
| 103 | return this.asyncCall('decodescript', [hex]); |
no test coverage detected