FeeBumpTransaction constructor

FeeBumpTransaction(
  1. String feeAccount,
  2. int fee,
  3. Transaction innerTransaction
)

Implementation

FeeBumpTransaction(String feeAccount, int fee, Transaction innerTransaction)
    : super(innerTransaction.network) {
  _mFeeAccount = checkNotNull(feeAccount, "feeAccount cannot be null");
  _mFee = checkNotNull(fee, "fee cannot be null");
}