Age | Commit message (Collapse) | Author |
|
- reduces some functional overhead and simplifies the code
|
|
9bbb880 [Qt] fix a issue where "command line options"-action overwrite "Preference"-action (on OSX) (Jonas Schnelli)
|
|
6cb4a52 [Qt, Linux] honor current network when creating autostart link (Philip Kaufmann)
9673c35 [Qt, Win] honor current network when creating autostart link (Philip Kaufmann)
|
|
eec3713 make CMessageHeader a dumb storage class (Cory Fields)
|
|
Removes variability between LE and BE.
As suggested by @sipa.
|
|
|
|
Don't ever serialize a size_t or long, their sizes are platform
dependent.
|
|
|
|
We've chosen to htons/ntohs explicitly on reading and writing
(I do not know why). But as READWRITE already does an endian swap
on big endian, this means the port number gets switched around,
which was what we were trying to avoid in the first place. So
to make this compatible, serialize it as FLATDATA.
|
|
Serialization type-safety and endianness compatibility.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- Detect endian instead of stopping configure on big-endian
- Add `byteswap.h` and `endian.h` header for compatibility with
Windows and other operating systems that don't come with them
- Update `crypto/common.h` functions to use compat
endian header
|
|
ba04c4a Limit message sizes before transfer (Pieter Wuille)
|
|
34e5015 Add unit tests for next difficulty calculations (Ross Nicoll)
|
|
This introduces a fixed limit for the size of p2p messages, and enforces it
before download.
|
|
"Preference"-action (on OSX)
- fixes #5800
|
|
|
|
6f1274c qt: Don't save geometry for options and about/help window (Wladimir J. van der Laan)
|
|
deda3e1 [Qt] remove unused getNumBlocksAtStartup() from ClientModel (Philip Kaufmann)
47ee8cf [Qt] use qint64 in BitcoinGUI::setNumBlocks (Philip Kaufmann)
|
|
d23b0a2 depends: always use static qt5 for linux (Cory Fields)
3448b13 build: fix typo in configure help (Cory Fields)
c95ac83 gitian: fix x86_64 build with static libstdc++ (Cory Fields)
0671516 build: change reduce exports/static libstdc++ options for gitian and travis (Cory Fields)
aa36730 build: remove libstdc++ backwards-compat (Cory Fields)
3ee028f build: disable reduced exports by default (Cory Fields)
|
|
16a58a8 keys: remove libsecp256k1 verification until it's actually supported (Cory Fields)
|
|
This was added a while ago for testing purposes, but was never intended to be
used. Remove it until upstream libsecp256k1 decides that verification is
stable/ready.
|
|
9abbeea Remove obsolete pubsub method definitions (Pieter Wuille)
|
|
25cf6f3 minor rework of SendMoney in rpcwallet (Philip Kaufmann)
|
|
85da07a Better fingerprinting protection for non-main-chain getdatas. (Pieter Wuille)
|
|
|
|
de5403f [GUI] Move fee dialog minimise button away from "Transaction Fee" (Michael Ford)
|
|
These dialogs will be something that people occasionally open, not keep
open during their session, so just popping it up in a sensible place
is good enough. Remembering only creates potential issues, like spawning
it outside the current screen area.
On Ubuntu this causes the dialogs to be positioned in the
middle of the main dialog, so I didn't add code for that. YMMV.
Inspired by github pull #5777 by @L-Cranston-Shadow
|
|
It shouldn't know or care about bitcoind's chain param selection
|
|
Code to avoid calling Perfmon too often is only needed when perfmon is actually going to get called.
This is not intended to make any functional difference in the addition of entropy to the random pool.
|
|
With headers-first we can compare against the best header timestamp, rather
than using checkpoints which require code updates to maintain.
|
|
Backwards-compatibility for libstdc++ is not limited to straightforward abi
changes. Symbol visibility also needs to be taken into consideration, and
that really can't be addressed simply.
Instead, just static-link libstdc++ for backwards-compat.
|
|
Split GetNextWorkRequired() into two functions to allow the difficulty calculations to
be tested without requiring a full blockchain.
Add unit tests to cover basic difficulty calculation, plus each of the min/max actual
time, and maximum difficulty target conditions.
|
|
Its original placement was causing confusion among some users.
|
|
e5d9d77 fix crash: createmultisig and addmultisigaddress (fsb4000)
|
|
1630219 openssl: abstract out OPENSSL_cleanse (Cory Fields)
|
|
|
|
- creates a "Bitcoin (testnet).lnk" when on testnet or a "Bitcoin
(regtest).lnk, when on regtest
- fixes #5778
|
|
850c570 No longer check osx compatibility in RenameThread (Michael Ford)
|
|
e5ece05 Rename Interval() to DifficultyAdjustmentInterval() (Shaul Kfir)
|
|
78c6bed Add test for DER-encoding edge case (Suhas Daftuar)
6f50dbd Fix NegateSignatureS to not duplicate last byte of S (Suhas Daftuar)
|
|
|
|
f5791c6 Add more information to errors in ReadBlockFromDisk (Wladimir J. van der Laan)
|
|
This makes it easier for us to replace it if desired, since it's now only in
one spot. Also, it avoids the openssl include from allocators.h, which
essentially forced openssl to be included from every compilation unit.
|
|
The fix to NegateSignatureS caused a test which had been failing
in IsValidSignatureEncoding to then fail in IsLowDERSignature.
Add new test so the original check remains exercised.
|