verify method

bool verify()

Implementation

bool verify() {
  if (txData!.isSigned) {
    final result = wallet.verify(txData!.signature, txData!.message);
    if (result) {
      // Reserve an interface to verify whether the broadcast transaction data is correct
      return checkTxData();
    }
  }
  return false;
}