(height: number, verbosity: number)
| 86 | } |
| 87 | |
| 88 | async getBlockByHeight(height: number, verbosity: number) { |
| 89 | const hash = await this.getBlockHash(height); |
| 90 | return this.getBlock(hash, verbosity); |
| 91 | } |
| 92 | |
| 93 | getTransaction(txid: string) { |
| 94 | return this.asyncCall<RPCTransaction>('getrawtransaction', [txid, true]); |
nothing calls this directly
no test coverage detected