waitForTransaction method

Future<void> waitForTransaction(
  1. String txnHash, {
  2. int? timeoutSecs,
  3. bool? checkSuccess,
})

Implementation

Future<void> waitForTransaction(
  String txnHash,
  { int? timeoutSecs, bool? checkSuccess }
) async {
  await waitForTransactionWithResult(
    txnHash,
    timeoutSecs: timeoutSecs,
    checkSuccess: checkSuccess);
}