4.4 查询区块by block number

getBlockByNum

参数:

  • blockNumber 区块号。
  • isPlain (可选) 默认为false,表示返回的区块包括区块内的交易信息,如果指定为true,表示返回的区块不包括区块内的交易。
  • nodeIds 说明请求向哪些节点发送。
  1. Request<BlockResponse> getBlockByNum(BigInteger blockNumber, int... nodeIds);
  2. Request<BlockResponse> getBlockByNum(BigInteger blockNumber, boolean isPlain, int... nodeIds);

重载方法如下:

  1. Request<BlockResponse> getBlockByNum(String blockNumber, int... nodeIds);
  2. Request<BlockResponse> getBlockByNum(String blockNumber, boolean isPlain, int... nodeIds);