Skip to content

Commit

Permalink
Revert minFeeRate usage in inner atomic txn transaction
Browse files Browse the repository at this point in the history
  • Loading branch information
tholonious committed Apr 22, 2024
1 parent 6ad37c9 commit 465a25d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/blockchain.go
Original file line number Diff line number Diff line change
Expand Up @@ -5944,7 +5944,7 @@ func (bc *Blockchain) CreateAtomicTxnsWrapper(

// Use EstimateFee to set the fee INCLUDING the wrapper. Note that this fee should generally be a bit
// higher than the totalFee computed above because the atomic wrapper adds overhead.
newFeeEstimate, err := mempool.EstimateFee(atomicTxn, minFeeRateNanosPerKB, maxBlockSizeBytes)
newFeeEstimate, err := mempool.EstimateFee(atomicTxn, 0, maxBlockSizeBytes)
if err != nil {
return nil, 0, errors.Wrapf(err, "CreateAtomicTxnsWrapper: failed to compute "+
"fee on full txn")
Expand Down

0 comments on commit 465a25d

Please sign in to comment.