(hash: string, verbosity: number)
| 78 | } |
| 79 | |
| 80 | getBlock(hash: string, verbosity: number) { |
| 81 | return this.asyncCall<RPCBlock<RPCTransaction>>('getblock', [hash, verbosity]); |
| 82 | } |
| 83 | |
| 84 | getBlockHash(height: number) { |
| 85 | return this.asyncCall<string>('getblockhash', [height]); |
no test coverage detected