Skip to content

Commit

Permalink
Drops unnecessary base fee check (#488)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaptic authored Jan 11, 2022
1 parent ce3cfcd commit 26bbf13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/transaction_builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export class TransactionBuilder {
this.source = sourceAccount;
this.operations = [];

this.baseFee = isUndefined(opts.fee) ? BASE_FEE : opts.fee;
this.baseFee = opts.fee;
this.timebounds = clone(opts.timebounds) || null;
this.memo = opts.memo || Memo.none();
this.networkPassphrase = opts.networkPassphrase || null;
Expand Down

0 comments on commit 26bbf13

Please sign in to comment.