FeeBumpTransaction constructor
- String feeAccount,
- int fee,
- 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");
_mInner = innerTransaction;
}