getBlockTxsByHeight method

Future getBlockTxsByHeight (int height)

Implementation

Future<dynamic> getBlockTxsByHeight(int height) async {
  var data = {
    'Action': 'getblocktxsbyheight',
    'Version': '1.0.0',
    'Height': height.toString(),
  };
  return send(data);
}