Age | Commit message (Collapse) | Author |
|
waitfornewblock waits until a new block is received, or the timeout expires, then
returns the current block height/hash.
waitforblock waits for a specific blockhash, or until the timeout expires, then
returns the current block height/hash. If the target blockhash is the current
tip, it will return immediately.
waitforblockheight waits until the tip has reached a certain height or higher,
then returns the current height and hash.
waitforblockheight is used to avoid polling in the rpc tests.
|
|
eb3596f Do not add random inbound peers to addrman. (Gregory Maxwell)
|
|
144ed76 Fix some locks (Pieter Wuille)
|
|
ff2ed7a trivial: remove unnecessary variable fDaemon (mruddy)
|
|
4424af5 Predeclare PrecomputedTransactionData as sturct (Pieter Wuille)
|
|
|
|
b7c349d Do not shadow variables in networking code (Pavel Janík)
|
|
a159f25 Remove redundand (and shadowing) declaration (Pavel Janík)
cce3024 Do not shadow local variable, cleanup (Pavel Janík)
|
|
|
|
cdd79eb C++11: s/boost::scoped_ptr/std::unique_ptr/ (Jorge Timón)
|
|
|
|
|
|
f012a85 rest.cpp: change HTTP_INTERNAL_SERVER_ERROR to HTTP_BAD_REQUEST (djpnewton)
|
|
33d15a3 Do not shadow LOCK's criticalblock variable for LOCK inside LOCK (Pavel Janík)
|
|
35fe039 Rename to PrecomputedTransactionData (Pieter Wuille)
ab48c5e Unit test for sighash caching (Nicolas DORIER)
d2c5d04 Precompute sighashes (Pieter Wuille)
|
|
|
|
887919c Check for compatibility with download in FindNextBlocksToDownload (Pieter Wuille)
|
|
b175cb7 Do not shadow variables. (Pavel Janík)
|
|
33336e1 [util] CopyrightHolders: Check for untranslated substitution (MarcoFalke)
|
|
|
|
de1bbe3 Do not shadow global RPC table variable (tableRPC) (Pavel Janík)
|
|
323a5fe Berkeley DB v6 compatibility fix (Alexey Vesnin)
|
|
203f212 Reduce default number of blocks to check at startup (Pieter Wuille)
|
|
Fixes building error looking like this:
CXX wallet/libbitcoin_wallet_a-db.o
wallet/db.cpp: In member function ‘void CDBEnv::EnvShutdown()’:
wallet/db.cpp:46:16: error: call of overloaded ‘DbEnv(int)’ is ambiguous
DbEnv(0).remove(strPath.c_str(), 0);
^
wallet/db.cpp:46:16: note: candidates are:
In file included from wallet/db.h:21:0,
from wallet/db.cpp:6:
/usr/include/db_cxx.h:916:2: note: DbEnv::DbEnv(const DbEnv&)
DbEnv(const DbEnv &);
^
/usr/include/db_cxx.h:518:2: note: DbEnv::DbEnv(DB_ENV)
DbEnv(DB_ENV *dbenv);
^
/usr/include/db_cxx.h:516:2: note: DbEnv::DbEnv(u_int32_t)
DbEnv(u_int32_t flags);
^
Makefile:5780: recipe for target 'wallet/libbitcoin_wallet_a-db.o' failed
make[2]: ** [wallet/libbitcoin_wallet_a-db.o] Error 1
|
|
beef966 [Wallet] remove unused code/conditions in ReadAtCursor (Jonas Schnelli)
|
|
fafe7b3 contrib: Make fix-copyright-headers.py more portable (MarcoFalke)
fa27c0a [doc] Fix typos in comments, doxygen: Fix comment syntax (MarcoFalke)
fabfd5d [qa] pull-tester: Don't mute zmq ImportError (MarcoFalke)
67a5502 init: Fix typo in help message for -whitelistforcerelay (Wladimir J. van der Laan)
|
|
40a95cf Set jonasschnellis dns-seeder filter flag (Jonas Schnelli)
|
|
|
|
|
|
This makes sure that cs_filter is never held while taking cs_main
or CNode::cs_vSend.
|
|
|
|
ff8d279 Do not shadow member variables (Pavel Janík)
|
|
fa6dc9f Remove unused variables (MarcoFalke)
|
|
fab5ecb [wallet] rpc: Drop misleading option (MarcoFalke)
|
|
4c3e2cb Show XTHIN in GUI (R E Broadley)
|
|
received with a hashStop of Null
259ee09 Show "end" instead of many zeros when getheaders request received with a hashStop of Null. (R E Broadley)
|
|
We should learn about new peers via address messages.
An inbound peer connecting to us tells us nothing about
its ability to accept incoming connections from us, so
we shouldn't assume that we can connect to it based on
this.
The vast majority of nodes on the network do not accept
incoming connections, adding them will only slow down
the process of making a successful connection in the
future.
Nodes which have configured themselves to not announce would prefer we
not violate their privacy by announcing them in GETADDR responses.
|
|
f13c1ba Move AdvertiseLocal debug output to net category (Michael Rotarius)
|
|
|
|
|
|
2f32c82 [Qt] show network/chain errors in the GUI (Jonas Schnelli)
|
|
57acb82 Load choose datadir dialog after options reset (Andrew Chow)
15df3c1 Persist the datadir after option reset (Andrew Chow)
|
|
fa1cf9e [test] Remove unused code (MarcoFalke)
|
|
table.
dbb1f64 Added feeler connections increasing good addrs in the tried table. (Ethan Heilman)
|
|
|
|
|
|
|
|
|
|
fa8dd78 [qt] Remove Priority from coincontrol dialog (MarcoFalke)
|
|
9578333 Remove rpc_wallet_tests.cpp (Patrick Strateman)
25400c4 Account wallet feature RPC tests. (Patrick Strateman)
|