mirror of
https://github.com/dogecoin/dogecoin.git
synced 2026-01-31 10:30:52 +00:00
commit
3875eaf9cc
@ -69,7 +69,7 @@ AC_DEFUN([BITCOIN_FIND_BDB53],[
|
||||
bdbpath="${bdb53path}"
|
||||
fi
|
||||
|
||||
dnl restore orgininal CPPFLAGS and fixate the now checked flags.
|
||||
dnl restore original CPPFLAGS and fixate the now checked flags.
|
||||
if test "x$BDB_CFLAGS" != "x"; then
|
||||
CPPFLAGS="${TCFLAGS}"
|
||||
BDB_CPPFLAGS=${BDB_CFLAGS}
|
||||
|
||||
@ -76,7 +76,7 @@
|
||||
#rpcuser=Ulysseys
|
||||
#rpcpassword=YourSuperGreatPasswordNumber_DO_NOT_USE_THIS_OR_YOU_WILL_GET_ROBBED_385593
|
||||
#
|
||||
# The second method `rpcauth` can be added to server startup argument. It is set at intialization time
|
||||
# The second method `rpcauth` can be added to server startup argument. It is set at initialization time
|
||||
# using the output from the script in share/rpcuser/rpcuser.py after providing a username:
|
||||
#
|
||||
# ./share/rpcuser/rpcuser.py alice
|
||||
|
||||
@ -69,7 +69,7 @@ class KeyPoolTest(BitcoinTestFramework):
|
||||
nodes[0].generate(1)
|
||||
try:
|
||||
nodes[0].generate(1)
|
||||
raise AssertionError('Keypool should be exhausted after three addesses')
|
||||
raise AssertionError('Keypool should be exhausted after three addresses')
|
||||
except JSONRPCException as e:
|
||||
assert(e.error['code']==-12)
|
||||
|
||||
|
||||
@ -117,7 +117,7 @@ BOOST_AUTO_TEST_CASE(merkle_test)
|
||||
// If no mutation was done (once for every ntx value), try up to 16 branches.
|
||||
if (mutate == 0) {
|
||||
for (int loop = 0; loop < std::min(ntx, 16); loop++) {
|
||||
// If ntx <= 16, try all branches. Otherise, try 16 random ones.
|
||||
// If ntx <= 16, try all branches. Otherwise, try 16 random ones.
|
||||
int mtx = loop;
|
||||
if (ntx > 16) {
|
||||
mtx = InsecureRandRange(ntx);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user