Age | Commit message (Collapse) | Author |
|
Because no one wants 4 gold mines being discovered every mibillenium.
|
|
Forces the block reward to zero when right shift in GetBlockValue() is
undefined, after 64 reward halvings (block height 13,440,000).
|
|
add getwalletinfo RPC call with wallet transaction count
|
|
Last Transifex pull (064a690) introduced a few control characters
into the Korean translation, which sometimes causes the build to fail.
Manually remove these characters for now to get the build working --
they should still be removed at Transifex too.
|
|
5283410 Remove unused includes of boost lexical_cast (Wladimir J. van der Laan)
|
|
|
|
f59d8f0 Per-peer block download tracking and stalled download detection. (Pieter Wuille)
|
|
This increases the space requirement for selecting a data directory in
the UI.
As suggested by @bardiharborow, fixes #3830.
|
|
8e29623 [Qt] show number of in/out connections in debug console (Philip Kaufmann)
|
|
e935293 Minor code cleanup: remove indentation (Mark Friedenbach)
|
|
This indentation should have been stripped out when AreInputsStandard was made a top-level function instead of a CTransaction method.
|
|
|
|
We don't use lexical_cast anywhere, no need to include it.
|
|
fecba4e Total money limit test (Pieter Wuille)
|
|
8a6894c Log which wallet is used during init (Wladimir J. van der Laan)
|
|
After the Qt5 switch, status icons were being cut off by 1-2px.
Also fixes some other cases where the UI is slightly off mentioned in #3800.
Fixes #3800.
|
|
Now that the wallet can be selected using -wallet it is important
to log which wallet is being used for later troubleshooting.
|
|
|
|
Added bounds check by @il--ya.
Updated-by: Wladimir van der Laan <laanwj@gmail.com>
|
|
|
|
When bitcoind can't bind, bitcoin server (or Bitcoin Core Daemon) is probably already running. Add the missing word "server". Bitcoin itself is definitely running ;-)
Add _(...) so the string can be localized.
I apologize for such trivial changes, learning github interface.
|
|
dc01ba7 Fix coin control sorts date as text (Cozz Lovan)
|
|
`master` is not a release. Use the same convention as before and label
these intermediate builds as x.x.99.
|
|
|
|
|
|
A few new messages have been added since last update.
|
|
Document that CPubKey.IsValid() is consensus critical
|
|
Make tinyformat errors raise an exception instead of assert()ing
|
|
Remove CWalletTx::vfSpent
|
|
These days we regard transactions with one confirmation to be
'Confirmed'.
Waiting for 6 confirmations is a recommendation but should not
keep the transaction shown as unconfirmed.
Misc code sanity:
- Merge maturity/status enums, they had become completely disjunct
- 'confirmed' flag is now called 'countsForBalance' for clarity
|
|
By default tinyformat errors such as 'wrong number of conversion
specifiers in format string' cause an assertion failure.
Raise an exception instead so that error handling can recover or can
show an appropriate error.
|
|
|
|
5d5b0d2 Add shell null to else block (Wil Bown)
|
|
stuff in getinfo call for backwards compatibility)
add wallet transaction count to getwalletinfo rpc call
|
|
4423571 Replace PrintException with PrintExceptionContinue + throw (Wladimir J. van der Laan)
|
|
MinGW-W64-builds-4.2.0 shell doesn't like the empty else blocks.
|
|
script: reduce OP_RETURN standard relay bytes to 40
|
|
Per mailing list discussion.
|
|
Remove PRIx64 usage completely
|
|
Use the spent outpoint multimap to figure out which wallet transaction
outputs are unspent, instead of a vfSpent array that is saved
to disk.
|
|
Just a pet peeve.
(PrintException has exactly the same body as PrintExceptionContinue but
does a re-throw at the end. Move these re-throws to the call
site, this aids understanding what is going on as well as eliminates a
bit of code duplication in util.cpp)
|
|
|
|
e6c6bc9 Adds additional zero checks for setCompact These encoded values should all decode to zero (Noel Tiernan)
|
|
a3138ed add test of DecodeBase58 skipping whitespace (Christian von Roques)
|
|
|
|
Wallet locking fixes for -DDEBUG_LOCKORDER
|
|
Drop fees by 10x due to the persistently higher exchange rate.
|
|
script: tighten multisig non-standard rules: do not relay pubkeys above 65 bytes
|
|
This was a bad idea. This can't be solved with macros as any
other library that includes inttypes.h will get in the way.
The parent commit has removed all usages from the source, this commit
removes the definition.
|
|
Amend to d5f1e72. It turns out that BerkelyDB was including inttypes.h
indirectly, so we cannot fix this with just macros.
Trivial commit: apply the following script to all .cpp and .h files:
# Middle
sed -i 's/"PRIx64"/x/g' "$1"
sed -i 's/"PRIu64"/u/g' "$1"
sed -i 's/"PRId64"/d/g' "$1"
# Initial
sed -i 's/PRIx64"/"x/g' "$1"
sed -i 's/PRIu64"/"u/g' "$1"
sed -i 's/PRId64"/"d/g' "$1"
# Trailing
sed -i 's/"PRIx64/x"/g' "$1"
sed -i 's/"PRIu64/u"/g' "$1"
sed -i 's/"PRId64/d"/g' "$1"
After this commit, `git grep` for PRI.64 should turn up nothing except
the defines in util.h.
|