forked from jl777/SuperNET
-
Notifications
You must be signed in to change notification settings - Fork 114
fix(UTXO): improve tx fee calculation and min relay fee handling #2316
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
cea1b2f
fix UtxoTxBuilder::build() tx fee calculation to include change output;
455403c
Merge branch 'dev' into fix-utxo-tx-fee-for-change
8d2fe79
fix qrc20 gas fee calc in trade preimage
bc69a42
revert qtum gas_fee calc in trade preimage,
40cfbda
fix: err if change < dust (was <=)
50a38f8
refactor (onur-ozkan): use refs instead of clone in add_tx_inputs
615ff3e
refactor (mariocynicys): fix return_err_if macro to check if cond is …
3f709fc
refactor: rename vars to use always 'fee rate' root word
459a379
fix (mariocynicys): recalc kmd interest when tx inputs reselected and…
534006e
Merge branch 'dev' into fix-utxo-tx-fee-for-change
ad0699e
fix after merge
1b2c538
refactor (mariocynicys) removed unnecessary checks
110a236
fix fee_amount in AdditionalTxData, get rid of unused_change, add reu…
b5994e6
add extra test to check tx builder calc with many inputs
ae8c3ee
remove unused_change in utxo tx builder (var not used any more)
9126c49
fix utxo tx builder test: add randomizer, catch overpay
997dcee
Merge remote-tracking branch 'origin/dev' into fix-utxo-tx-fee-for-ch…
shamardy 7ca03f4
review (mariocynicys): improve calc kmd interest performance with get…
850f7b3
Merge remote-tracking branch 'origin/dev' into fix-utxo-tx-fee-for-ch…
shamardy eab8902
fix after merge: rename the 2 different `is_kmd` methods to a more de…
shamardy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could you explain more about this fee scheme. the per each output part isn't really clear (understood it as 1 fee_rate per 1 output, which i doubt is a correct understanding).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, actually I have the same question:
this fee calc is not fully clear to me. The comment refers to DOGE, I took a look at its daemon code but did not find where this logic is.