MarcoFalke
ddf58c7573
wallet: Remove sendfree
...
This removes the option from the wallet to not pay a fee on "small"
transactions which spend "old" inputs.
This code is no longer worth keeping around, as almost all miners
prefer not to include transactions which pay no fee at all.
8 years ago
Marko Bencun
ef9f495e93
Trivial: fix comments referencing AppInit2
...
It was refactored into multiple functions in
0cc8b6bc44
.
8 years ago
Marko Bencun
5b528d746c
qt: clean up initialize/shutdown signals
...
- Change initializeResult(int) to initializeResult(bool) to avoid
implicit type conversion.
- Use EXIT_FAILURE and EXIT_SUCCESS instead of magic numbers.
- Remove the argument from shutdownResult(int); it was called with a
constant argument.
8 years ago
Jonas Schnelli
312c4f1057
Fix segfault crash when shutdown the GUI in disablewallet mode
8 years ago
Pieter Wuille
c801c82e25
Move BIP70_MAX_PAYMENTREQUEST_SIZE to header
8 years ago
Jonas Schnelli
4b6ccccc16
Selectively suppress deprecation warnings
8 years ago
Luke Dashjr
0b4f273e9c
Bugfix: Qt/Options: Restore persistent "restart required" notice
8 years ago
Wladimir J. van der Laan
056aba2b4f
Remove fallbacks for boost_filesystem < v3
...
Minimum boost version was bumped to 1.47.0 in #8920 , which
means the configure step won't even pass with older boost.
This version has boost filesystem v3, which means the
(crappy) fallbacks for older versions can go.
8 years ago
Wladimir J. van der Laan
7179e7ca0d
qt: Periodic translations update
8 years ago
Luke Dashjr
f6d18f5b33
Qt/Intro: Explain a bit more what will happen first time
8 years ago
Luke Dashjr
50c56570b2
Qt/Intro: Storage shouldn't grow significantly with pruning enabled
8 years ago
Luke Dashjr
9adb694b17
Qt/Intro: Move sizeWarningLabel text into C++ code
8 years ago
Luke Dashjr
a9baa6d742
Bugfix: Qt/Intro: Pruned nodes never require *more* space
8 years ago
Luke Dashjr
93ffba7163
Bugfix: Qt/Intro: Chain state needs to be stored even with the full blockchain
8 years ago
Luke Dashjr
c8cee26100
Qt/Intro: Update block chain size
8 years ago
practicalswift
a47da4b6fe
Use z = std::max(x - y, 0); instead of z = x - y; if (z < 0) z = 0;
8 years ago
Wladimir J. van der Laan
71fc17f667
qt: periodic translations update
8 years ago
practicalswift
5f62e3eb63
Fix typos
8 years ago
practicalswift
cc16d99f1d
[trivial] Fix typos in comments
8 years ago
Jonas Schnelli
04b877361b
[Qt] fix transaction details output-index to reflect vout index
8 years ago
Suhas Daftuar
99464bc38e
net: Consistently use GetTimeMicros() for inactivity checks
...
The use of mocktime in test logic means that comparisons between
GetTime() and GetTimeMicros()/1000000 are unreliable since the former
can use mocktime values while the latter always gets the system clock;
this changes the networking code's inactivity checks to consistently
use the system clock for inactivity comparisons.
Also remove some hacks from setmocktime() that are no longer needed,
now that we're using the system clock for nLastSend and nLastRecv.
8 years ago
Wladimir J. van der Laan
af01cd3a3d
qt: Periodic translation update
8 years ago
Wladimir J. van der Laan
b8d1b81077
trivial: squash missing field 'argNames' initializer warning in qt tests
...
The additional initializer is for the named arguments, which are unused
in the test (and unfilled global fields will be initialized to 0
anyhow), so this is a no-op apart from the warning.
8 years ago
MarcoFalke
fa4d47814f
qt: Use nPowTargetSpacing constant
8 years ago
Jonas Schnelli
40ec7c7b0d
[Qt] Improve progress display during headers-sync and peer-finding
8 years ago
Wladimir J. van der Laan
b0819c7e9b
qt: periodic translations update
8 years ago
Alex Morcos
eb30d1a5b2
Introduce -dustrelayfee
8 years ago
practicalswift
988d300932
[qt] Rename formateNiceTimeOffset(qint64) to formatNiceTimeOffset(qint64)
8 years ago
Wladimir J. van der Laan
68eb56203b
qt: periodic translations update
8 years ago
Pavel Janík
7df5e382e5
Rename lambda argument name to prevent shadowing.
8 years ago
Jonas Schnelli
325e400f9b
[Qt] Do proper shutdown
8 years ago
Pieter Wuille
3641141c8f
Move tx estimation data out of CCheckPointData
8 years ago
Pieter Wuille
a4bac66cca
[MOVEONLY] Move progress estimation out of checkpoints
8 years ago
Luke Dashjr
0388afe69d
Let autoconf detect presence of EVP_MD_CTX_new
...
Fixes LibreSSL compatibility
8 years ago
Wladimir J. van der Laan
388ea19bf2
qt: Set (count) placeholder in sendcoinsdialog to notranslate
8 years ago
MarcoFalke
facf3e7608
[qt] `make translate`
8 years ago
MarcoFalke
fab6c5f46b
[qt] Do not translate `~`
8 years ago
Wladimir J. van der Laan
d45b21e2b3
qt: Fill in English numerusforms
...
minute/minutes block/blocks and so forth.
8 years ago
Wladimir J. van der Laan
a9d6151802
qt,wallet: Fix a few typos in messages
...
As reported by [yahoe.001](https://www.transifex.com/user/profile/yahoe.001/ ).
8 years ago
Wladimir J. van der Laan
1d2d67692c
qt: Set transifex slug to 0.14
...
Also perform update of source translations.
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
Luke Dashjr
8562792095
GUI/RPCConsole: Include importmulti in history sensitive-command filter
8 years ago
Luke Dashjr
ff77faf480
Qt/RPCConsole: Use RPCParseCommandLine to perform command filtering
8 years ago
Luke Dashjr
a79598ddf4
Qt/Test: Make sure filtering sensitive data works correctly in nested commands
8 years ago
Luke Dashjr
629cd42364
Qt/RPCConsole: Teach RPCParseCommandLine how to filter out arguments to sensitive commands
8 years ago
Luke Dashjr
e2d9213c32
Qt/RPCConsole: Make it possible to parse a command without executing it
8 years ago
Luke Dashjr
1755c04576
Qt/RPCConsole: Truncate filtered commands to just the command name, rather than skip it entirely in history
8 years ago
Luke Dashjr
d80a00660f
Qt/RPCConsole: Add signmessagewithprivkey to list of commands filtered from history
8 years ago
Luke Dashjr
afde12f265
Qt/RPCConsole: Refactor command_may_contain_sensitive_data function out of RPCConsole::on_lineEdit_returnPressed
8 years ago
Luke Dashjr
de8980df9d
Bugfix: Do not add sensitive information to history for real
...
Original code was missing braces, and short-circuited before checking everything after importprivkey
8 years ago