1360 Commits (b45c597caadabbf10a1e34f2c9ee1d0916164eee)

Author SHA1 Message Date
Mark Friedenbach c8e29d7ff0 Replace MAX_OPCODE for OP_NOP10. 8 years ago
practicalswift 49eb0916da [tests] Avoid redundant assignments. Remove unused variables. 8 years ago
Pavel Janík 5618b7d1ad Do not shadow upper local variable `state`. 8 years ago
Pieter Wuille 0aadc11fd8 Avoid dereference-of-casted-pointer 8 years ago
Matt Corallo 3192975f1d Flush CValidationInterface callbacks prior to destruction 8 years ago
Matt Corallo cda1429d5b Give CMainSignals a reference to the global scheduler 8 years ago
Alex Morcos e0738e3d31 remove default argument from estimateSmartFee 8 years ago
practicalswift aa95947ded Use the override specifier (C++11) where we expect to be overriding the virtual function of a base class 8 years ago
Suhas Daftuar e3f9c05b96 Add CheckInputs() unit tests 8 years ago
Pieter Wuille 21180ff734 Simplify return values of GetCoin/HaveCoin(InCache) 8 years ago
Dimitris Tsapakidis 0a5a6b90bc Fixed multiple typos 8 years ago
Jorge Timón 5995735c5b
scripted-diff: Remove #include <boost/foreach.hpp> 8 years ago
Jorge Timón 3eff827f89
scripted-diff: Remove BOOST_REVERSE_FOREACH 8 years ago
Jorge Timón 300851ec16
Introduce src/reverse_iterator.hpp and include it... 8 years ago
Cory Fields 6d0bd5b73d net: do not allow resolving to an internal address 8 years ago
Cory Fields 7f31762cb6 net: add an internal subnet for representing unresolved hostnames 8 years ago
Pieter Wuille cb24c8539d Use rdrand as entropy source on supported platforms 8 years ago
practicalswift 67ca816849 Simplify "bool x = y ? true : false" to "bool x = y" 8 years ago
practicalswift 49de096c2a Remove unused Boost includes 8 years ago
Russell Yanofsky 3ff1fa8c4a Use override keyword on CCoinsView overrides 8 years ago
practicalswift 30c2d9db48 [tests] Remove unused function InsecureRandBytes(size_t len) 8 years ago
Andrew Chow 5b75c47784 Add a valid opcode sanity check to CScript 8 years ago
Pieter Wuille e945848582 scripted-diff: Use new naming style for insecure_rand* functions 8 years ago
practicalswift 0abc58890c [tests] Remove printf(...) 8 years ago
practicalswift 227ae9b34d [tests] Use FastRandomContext instead of boost::random::{mt19937,uniform_int_distribution} 8 years ago
Pieter Wuille 2fcd9cc86b scripted-diff: Use randbits/bool instead of randrange where possible 8 years ago
Pieter Wuille 2ada678521 Use randbits instead of ad-hoc emulation in prevector tests 8 years ago
Pieter Wuille 5f0b04eedc Replace rand() & ((1 << N) - 1) with randbits(N) 8 years ago
Pieter Wuille 3ecabae363 Replace more rand() % NUM by randranges 8 years ago
Matt Corallo b5fea8d0cc Cache full script execution results in addition to signatures 8 years ago
practicalswift 3fb81a8480 Use list initialization (C++11) for maps/vectors instead of boost::assign::map_list_of/list_of 8 years ago
Pieter Wuille efee1db21a scripted-diff: use insecure_rand256/randrange more 8 years ago
Pieter Wuille 1119927df0 Add various insecure_rand wrappers for tests 8 years ago
Pieter Wuille 124d13a58c Merge test_random.h into test_bitcoin.h 8 years ago
Pieter Wuille 90620d66c9 scripted-diff: Rename cuckoo tests' local rand context 8 years ago
Pieter Wuille 37e864eb9f Add FastRandomContext::rand256() and ::randbytes() 8 years ago
Jorge Timón 7c00c26726
scripted-diff: Fully remove BOOST_FOREACH 8 years ago
Wladimir J. van der Laan a7e3c2814c rpc: Add listen address to incoming connections in `getpeerinfo` 8 years ago
practicalswift 90593ed92c Limit variable scope 8 years ago
Pieter Wuille 9aa215bff9 Bugfixes: missing == 0 after randrange 8 years ago
Pieter Wuille 589827975f scripted-diff: various renames for per-utxo consistency 8 years ago
Pieter Wuille 73de2c1ff3 Rename CCoinsCacheEntry::coins to coin 8 years ago
Pieter Wuille ce23efaa5c Extend coins_tests 8 years ago
Pieter Wuille 5083079688 Switch CCoinsView and chainstate db from per-txid to per-txout 8 years ago
Pieter Wuille 961e483979 Switch tests from ModifyCoins to AddCoin/SpendCoin 8 years ago
Pieter Wuille 8b3868c1b4 Switch CScriptCheck to use Coin instead of CCoins 8 years ago
Matt Corallo c87b957a32 Only pass things committed to by tx's witness hash to CScriptCheck 8 years ago
Pieter Wuille f68cdfe92b Switch from per-tx to per-txout CCoinsViewCache methods in some places 8 years ago
Pieter Wuille bd83111a0f Optimization: Coin&& to ApplyTxInUndo 8 years ago
Pieter Wuille cb2c7fdac2 Replace CTxInUndo with Coin 8 years ago