Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

Commit

Permalink
update fee
Browse files Browse the repository at this point in the history
  • Loading branch information
giangnamnabka committed Jun 21, 2023
1 parent c79bcb6 commit 010dbb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/modules/Transactions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ const mutations = {

function selectUTXOs(isPrivate: boolean, isSpark: boolean, istransparentaddress: boolean, amount: bigint, feePerKb: bigint, subtractFeeFromAmount: boolean, availableUTXOs: TXO[], coinControl: boolean): [bigint, TXO[]] {
let constantSize;
if(!isPrivate) {
if(!isPrivate && istransparentaddress) {
constantSize = 78n;
} else if (isPrivate && !isSpark) {
constantSize = 1234n;
Expand Down

0 comments on commit 010dbb5

Please sign in to comment.