getBlockHash method

Future getBlockHash (int height)

Implementation

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