Age | Commit message (Collapse) | Author |
|
b682960 Adding P2SH(p2pkh) script test case (Chris Stewart)
|
|
1a8c4d5 [Doc] Add benchmarking notes (fanquake)
|
|
63ff57d Avoid integer division in the benchmark inner-most loop. (Gregory Maxwell)
|
|
Previously the benchmark code used an integer division (%) with
a non-constant in the inner-loop. This is quite slow on many
processors, especially ones like ARM that lack a hardware divide.
Even on fairly recent x86_64 like haswell an integer division can
take something like 100 cycles-- making it comparable to the
runtime of siphash.
This change avoids the division by using bitmasking instead. This
was especially easy since the count was only increased by doubling.
This change also restarts the timing when the execution time was
very low this avoids mintimes of zero in cases where one execution
ends up below the timer resolution. It also reduces the impact of
the overhead on the final result.
The formatting of the prints is changed to not use scientific
notation make it more machine readable (in particular, gnuplot
croaks on the non-fixedpoint, and it doesn't sort correctly).
This also hoists out all the floating point divisions out of the
semi-hot path because it was easy to do so.
It might be prudent to break out the critical test into a macro
just to guarantee that it gets inlined. It might also make sense
to just save out the intermediate counts and times and get the
floating point completely out of the timing loop (because e.g.
on hardware without a fast hardware FPU like some ARM it will
still be slow enough to distort the results). I haven't done
either of these in this commit.
|
|
628cf14 Don't use assert for catching randomness failures (Pieter Wuille)
fa2637a Always require OS randomness when generating secret keys (Pieter Wuille)
|
|
Fixing formatting
Adding test case into automatically generated test case set
Clean up commits
removing extra whitespace from eol
Removing extra whitespace on macro line
|
|
5fac1f3 bench: Added base58 encoding/decoding benchmarks (Yuri Zhykin)
|
|
fc95f6e fix typo in help text (Chris Moore)
|
|
619d569 Benchmark SipHash (Pieter Wuille)
|
|
e871f83 Tests: add timeout to sync_blocks() and sync_mempools() (Suhas Daftuar)
|
|
|
|
|
|
|
|
|
|
13c4558 Remove unused local variable shadowing upper local (Pavel Janík)
|
|
fa57b0c [qa] test_framework: Append portseed to tmpdir (MarcoFalke)
|
|
|
|
|
|
Previously these functions would infinitely loop if sync failed;
now they have a default timeout of 60 seconds, after which an
AssertionError is raised.
sync_blocks() has also been improved and now compares the tip
hash of each node, rather than just using block count.
|
|
52b02ec Use global ::fRelayTxes instead of CNode one (Pieter Wuille)
|
|
|
|
`getnetwork`
1ab1dc3 rpc: Add `relaytxes` flag to `getnetworkinfo` (Wladimir J. van der Laan)
581ddff net: Add fRelayTxes flag (Wladimir J. van der Laan)
|
|
a4d5855 CCoinsViewErrorCatcher raison-d-etre (21E14)
|
|
90963e5 [doc] Add basic git squash example (fanquake)
|
|
02ce2a3 qt: askpassphrasedialog: Clear pass fields on accept (Pavel Vasin)
|
|
f20d42e UpdateTip: log only one line at most per block (Wladimir J. van der Laan)
|
|
380498a Move BackupWallet to CWallet::BackupWallet (Patrick Strateman)
ecb9741 Move GetAccountBalance from rpcwallet.cpp into CWallet::GetAccountBalance (Patrick Strateman)
|
|
bd477f4 VerifyDB: don't check blocks that have been pruned (Suhas Daftuar)
|
|
46b0c3b Acquire lock to check for genesis block. (Patrick Strateman)
|
|
678513c Correct small typo in extract_strings_qt.py (Mitchell Cash)
|
|
1ad9339 Test framework: only cleanup on successful test runs (Suhas Daftuar)
|
|
|
|
|
|
2d5603c Qt: Sort transactions by date (Tyler Hardin)
|
|
verification state
276ce84 [Qt] Disable some menu items during splashscreen/verification state (Jonas Schnelli)
|
|
|
|
fab5233 [qa] test_framework: Set wait-timeout for bitcoind procs (MarcoFalke)
|
|
fad68f7 [qa] Reduce node count for some tests (MarcoFalke)
fac9349 [qa] Remove hardcoded "4 nodes" from test_framework (MarcoFalke)
|
|
401ae65 travis: 'make check' in parallel and verbose (Cory Fields)
|
|
This makes it possible to specify a tmpdir while running tests in
parallel
|
|
This is usability improvement in a case if user gets re-asked
passphrase. (e.g. made a typo)
|
|
- 'make check' in parallel, since the log will take care of clean output
- 'make check' verbose, so that test failure causes aren't hidden
|
|
2a8b358 Fix typo adddrman to addrman as requested in #8070 (Ethan Heilman)
f4119c6 Remove non-determinism which is breaking net_tests #8069 (EthanHeilman)
|
|
unnecessarily scary
bf9266e Use Socks5ErrorString() to decode error responses from socks proxy. (Warren Togami)
94fd1d8 Make Socks5() InterruptibleRecv() timeout/failures informative. (Warren Togami)
0d9af79 SOCKS5 connecting and connected messages with -debug=net. (Warren Togami)
00678bd Make failures to connect via Socks5() more informative and less unnecessarily scary. (Warren Togami)
|
|
|
|
|
|
|
|
b4d24e1 Report reindexing progress in GUI (Pieter Wuille)
d3d7547 Add -reindex-chainstate that does not rebuild block index (Pieter Wuille)
fb8fad1 Optimize ActivateBestChain for long chains (Pieter Wuille)
316623f Switch reindexing to AcceptBlock in-loop and ActivateBestChain afterwards (Pieter Wuille)
d253ec4 Make ProcessNewBlock dbp const and update comment (Pieter Wuille)
|
|
f93c2a1 net: Avoid duplicate getheaders requests. (Daniel Kraft)
|
|
6075bc4 doc: 32 and 64 bit packages are seperate (Wladimir J. van der Laan)
e5764e6 doc: Remove outdated qt4 install information from README.md (Wladimir J. van der Laan)
|