FeeBumpTransaction constructor
- MuxedAccount feeAccount,
- int fee,
- Transaction innerTransaction
Implementation
FeeBumpTransaction(
MuxedAccount feeAccount, int fee, Transaction innerTransaction)
: super() {
_mFeeAccount = checkNotNull(feeAccount, "feeAccount cannot be null");
_mFee = checkNotNull(fee, "fee cannot be null");
_mInner = innerTransaction;
}