Jonas Schnelli
bc1be90e37
[Qt] replace fee slider with a Dropdown, extend conf. targets
7 years ago
Alex Morcos
e9cd7786da
Pass in smart fee slider value to coin control dialog
...
Since cfe77ef41
the global nTxConfirmTarget wasn't being updated by the smart
fee slider and thus the coin control dialog and labels were not being updated.
8 years ago
Alex Morcos
1bebfc8d3a
Output Fee Estimation Calculations in CreateTransaction
8 years ago
Jorge Timón
18dc3c3962
scripted-diff: Remove Q_FOREACH
...
-BEGIN VERIFY SCRIPT-
sed -i 's/Q_FOREACH *(\(.*\),/for (\1 :/' ./src/*.h ./src/*.cpp ./src/*/*.h ./src/*/*.cpp ./src/*/*/*.h ./src/*/*/*.cpp ;
-END VERIFY SCRIPT-
8 years ago
Gregory Sanders
091a9ae21c
remove minimum total fee option
8 years ago
Jonas Schnelli
fbf385cc83
[Qt] simple fee bumper with user verification
8 years ago
Russell Yanofsky
fb463d1717
[qt] Don't call method on null WalletModel object
...
This doesn't crash currently because the method doesn't access any object
members, but this behavior is fragile and incompatible with #10102 .
8 years ago
Alex Morcos
14e10aa842
Call estimate(Smart)Fee directly from CBlockPolicyEstimator
8 years ago
Luke Dashjr
7abe7bbf61
Qt/Send: Give fallback fee a reasonable indent
8 years ago
Luke Dashjr
3e4d7bfcb7
Qt/Send: Figure a decent warning colour from theme
8 years ago
practicalswift
cc16d99f1d
[trivial] Fix typos in comments
8 years ago
Russell Yanofsky
c4e4792c53
[Qt] Change RBF checkbox to reflect -walletrbf setting
...
Before this commit, the checkbox would always start off unchecked. After this
commit it will respect the -walletrbf setting (which is currently false by
default).
8 years ago
Jonas Schnelli
838a58e7ca
[Qt] Add simple optin-RBF checkbox and confirmation info
8 years ago
MarcoFalke
fa4d47814f
qt: Use nPowTargetSpacing constant
8 years ago
Jonas Schnelli
c5adf8f267
[Qt] Show more significant warning if we fall back to the default fee
8 years ago
isle2983
27765b6403
Increment MIT Licence copyright header year on files modified in 2016
...
Edited via:
$ contrib/devtools/copyright_header.py update .
8 years ago
Jonas Schnelli
54f80263fc
[CoinControl] Allow non-wallet owned change addresses
8 years ago
Matt Corallo
76faa3cdfe
Rename the remaining main.{h,cpp} to validation.{h,cpp}
8 years ago
Alex Morcos
e878689e55
Make GUI incapable of setting tx confirm target of 1
8 years ago
MarcoFalke
3333e5a1e5
[qt] Return useful error message on ATMP failure
8 years ago
Jonas Schnelli
cfe77ef412
[Qt] overhaul smart-fee slider, adjust default confirmation target
8 years ago
Wladimir J. van der Laan
1ae5839ff0
moveonly: move `coincontrol` to `src/wallet`
8 years ago
Pavel Janík
f839350420
Do not shadow in src/qt
8 years ago
Jonas Schnelli
04802930d4
[Qt][CoinControl] fix UI bug that could result in paying unexpected fee
8 years ago
MarcoFalke
fa8dd785a2
[qt] Remove Priority from coincontrol dialog
8 years ago
Pieter Wuille
b4d24e142e
Report reindexing progress in GUI
9 years ago
Tyler Hardin
3902a291ab
Qt: Delay user confirmation of send
...
I made a subclass of QMessageBox that disables the send button in
exec() and starts a timer that calls a slot to re-enable it after a
configurable delay.
It also has a countdown in the send/yes button while it is disabled
to hint to the user why the send button is disabled (and that it is
actually supposed to be disabled).
9 years ago
MarcoFalke
fae8467d41
[qt] Remove unneeded "fSendFreeTransactions" check
9 years ago
MarcoFalke
fa48bb3148
[qt] Remove 0-fee from send dialog
9 years ago
Chris Wheeler
9d263bd17c
Typo fixes in comments
9 years ago
Alex Morcos
e420a1b15e
Add sane fallback for fee estimation
...
Add new commandline option "-fallbackfee" to use when fee estimation does not have sufficient data.
9 years ago
Jonas Schnelli
621bd6919f
[Qt] fix coincontrol update issue when deleting a send coin entry
9 years ago
MarcoFalke
fa24439ff3
Bump copyright headers to 2015
9 years ago
Jonas Schnelli
ff723da6f6
[Qt] improve minimum absolute fee option
...
- Only display the minimum absolute fee control if CoinControl is enabled
9 years ago
Jonas Schnelli
4082e46603
[Qt] call GuessVerificationProgress synchronous during core signal, pass double over UI signal
9 years ago
Jonas Schnelli
947d20b84a
[Qt] reduce cs_main in getVerificationProgress()
9 years ago
Alex Morcos
4fe28236c0
Change wallet and GUI code to use new smart fee estimation calls.
9 years ago
MarcoFalke
6dd3a44ce2
translations: Don't translate markdown or force English grammar
9 years ago
MarcoFalke
513686dd43
[qt] Use maxTxFee instead of 10000000
9 years ago
MarcoFalke
abd8b768ee
[qt] Properly display required fee instead of minTxFee
9 years ago
Jonas Schnelli
24cb7c7bbb
[QT] fix thin space word wrap line brake issue
...
The thin space QT html hack results in cut-off chars/nums after a line break.
Avoid word wrap line breaks by using a smaller font and a line break before each alternative value)
9 years ago
Wladimir J. van der Laan
eec7757445
qt: Introduce PlatformStyle
...
Introduce a PlatformStyle to handle platform-specific customization of
the UI.
This replaces 'scicon', as well as #ifdefs to determine whether to place
icons on buttons.
The selected PlatformStyle defaults to the platform that the application
was compiled on, but can be overridden from the command line with
`-uiplatform=<x>`.
Also fixes the warning from #6328 .
9 years ago
Jorge Timón
60c8bac77c
Includes: Cleanup around net main and wallet
...
-Move from .h to .cpp: in main, net and wallet
-Remove unnecessary #include "main.h"
-Cleanup some wallet files includes
9 years ago
Jorge Timón
9dd793f499
TRIVIAL: Missing includes
9 years ago
Matt Corallo
f5813bdd3e
Add logic to track pubkeys as watch-only, not just scripts
9 years ago
Wladimir J. van der Laan
d29ec6c230
qt: define QT_NO_KEYWORDS
...
QT_NO_KEYWORDS prevents Qt from defining the `foreach`, `signals`,
`slots` and `emit` macros.
Avoid overlap between Qt macros and boost - for example #undef hackiness
in #6421 .
9 years ago
Philip Kaufmann
e656560edb
[Qt] add defaultConfirmTarget constant to sendcoinsdialog
...
- replaces some hard-coded values for the default confirmation target
- also simplify code that is using the new constant
10 years ago
Luke Dashjr
b05a89b2de
Non-grammatical language improvements
10 years ago
Corinne Dashjr
7e6d23b171
Bugfix: Grammar fixes
10 years ago
Philip Kaufmann
107d35b700
[Qt] add defaultConfirmTarget constant to sendcoinsdialog
...
- replaces some hard-coded values for the default confirmation target
- also simplify code that is using the new constant
10 years ago