getBlockHeight method

Future<u64> getBlockHeight({
  1. GetBlockHeightConfig? config,
})

Returns the current block height of the node.

Implementation

Future<u64> getBlockHeight({
  final GetBlockHeightConfig? config,
}) async =>
    (await getBlockHeightRaw(config: config)).result!;