Fee selection#546
Merged
Merged
Conversation
88739f0 to
7824720
Compare
Collaborator
Author
|
Related to #520 |
MarnixCroes
reviewed
Apr 6, 2026
Contributor
MarnixCroes
left a comment
There was a problem hiding this comment.
build fails 5c7cd51
In file included from /usr/include/x86_64-linux-gnu/qt6/QtTest/qtesteventloop.h:8,
from /usr/include/x86_64-linux-gnu/qt6/QtTest/qsignalspy.h:11,
from /usr/include/x86_64-linux-gnu/qt6/QtTest/QtTest:10,
from /home/marnix/projects/gui-qml/test/test_walletqmlmodel.cpp:5:
/home/marnix/projects/gui-qml/test/test_walletqmlmodel.cpp: In lambda function:
/home/marnix/projects/gui-qml/test/test_walletqmlmodel.cpp:409:9: error: return-statement with no value, in function returning ‘util::Result<std::shared_ptr<const CTransaction> >’ [-fpermissive]
409 | QCOMPARE(recipients.size(), 1U);
| ^~~~~~~~
gmake[2]: *** [test/CMakeFiles/bitcoinqml_unit_tests.dir/build.make:216: test/CMakeFiles/bitcoinqml_unit_tests.dir/test_walletqmlmodel.cpp.o] Error 1
gmake[1]: *** [CMakeFiles/Makefile2:2075: test/CMakeFiles/bitcoinqml_unit_tests.dir/all] Error 2
gmake: *** [Makefile:146: all] Error 2
5c7cd51 to
a4de80b
Compare
Collaborator
Author
|
fix the compile issue in the unittest |
MarnixCroes
reviewed
Apr 8, 2026
Contributor
MarnixCroes
left a comment
There was a problem hiding this comment.
some comments from first test (some maybe for follow up):
- Fee amount is not displayed in sats in case this is active
- The Fee Rate entry is not limited when no decimal is used (i.e. it accepts an unlimited amount of characters as long as no comma is used)
- When entering full balance, and not
Include fee in amountthe Review button doesn't work. Which makes sense, but there is no clear user feedback on why.
Collaborator
Author
| quint64 m_fee_estimate_request_id{0}; | ||
| int m_fee_estimate_revision{0}; | ||
| bool m_custom_fee_enabled{false}; | ||
| bool m_fee_estimate_pending{false}; |
Contributor
There was a problem hiding this comment.
Do you think it'll be better to extract the fee estimation related code to its own model, say feeselectionmodel.
This way both send and RBF flows can use it
Collaborator
Author
There was a problem hiding this comment.
Yes I think that makes sense. Probably some association per transaction with the current_transaction being the one in the send dialog and maybe another for a chosen RBF transaction? I'm not totally sure where it would land but just at a glance it looks like it might be a needed refactor.
johnny9
added a commit
to johnny9/BitcoinCoreAppDevelopment
that referenced
this pull request
Apr 27, 2026
# Conflicts: # qml/models/walletqmlmodel.cpp # qml/pages/wallet/DesktopWallets.qml # qml/pages/wallet/Send.qml # test/CMakeLists.txt # test/qml/qml_tests_main.cpp # test/test_unit_tests_main.cpp
a4de80b to
e5fab68
Compare
MarnixCroes
reviewed
May 4, 2026
MarnixCroes
approved these changes
May 7, 2026
hebasto
added a commit
that referenced
this pull request
May 9, 2026
3268d3e qml: Dim conflicted transactions in activity list (pseudoramdom) 2cf482b test: Add functional tests for RBF flow (pseudoramdom) 5999e80 test: Add bump transaction model unit tests & qml tests (pseudoramdom) f4ff2b8 qml: Implement Replace-by-fee (pseudoramdom) Pull request description: Bring support to "Speed up" unconfirmed transactions by bumping fees (#521) - Add `BumpTransactionModel` to manage the fee bump flow - Add `SpeedUpOverlay` popup to review and confirm the higher-fee replacement transaction - Add a reusable` InfoBanner` component for contextual actions/status - Show a speed up banner in transaction details for bumpable transactions - Show a replacement-status banner in transaction details when a transaction has been replaced #### Review note - ~~This PR is stacked on top of #546 (a4de80b)~~ Now merged and this PR is rebased ### Screenshots <img width="1181" height="906" alt="Screenshot 2026-04-24 at 2 51 49 PM" src="https://github.com/user-attachments/assets/93f3a27d-a540-4adb-95ff-0ff339ae3e0d" /> <img width="1428" height="1127" alt="Screenshot 2026-04-25 at 1 18 36 PM" src="https://github.com/user-attachments/assets/d91dd115-4f94-473a-8019-21073555bab3" /> <img width="1428" height="1127" alt="Screenshot 2026-04-25 at 1 19 16 PM" src="https://github.com/user-attachments/assets/73e40893-4f9c-493c-bf6e-6eefe3692f6a" /> <img width="1428" height="1127" alt="Screenshot 2026-04-25 at 1 19 32 PM" src="https://github.com/user-attachments/assets/189a4163-5565-452a-ba5d-ae9c17a71868" /> ACKs for top commit: johnny9: ACK 3268d3e Tree-SHA512: 2d6e887815484d10883adfa84b0f0abcdfc953bf836c683e3c87a186a36a5de03524bf324ed4bd36fccb2e9b747f228a7f6c3eed1bb2c3192e3f1ac8bed2df40
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.



Wires up fee selection in the Send page. Overrides are in place for Regtest where CoinControl fee estimations aren't supported.