Skip to content

Commit

Permalink
test/bip148-segwit-uasf: Explicitly set -bip148=0 for nodes that shou…
Browse files Browse the repository at this point in the history
…ldn't enforce it
  • Loading branch information
luke-jr committed Jul 4, 2017
1 parent 08c5702 commit 9fef236
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions qa/rpc-tests/bip148-segwit-uasf.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ def __init__(self):
self.num_nodes = 8
self.setup_clean_chain = False
self.extra_args = [
[bip9_blockver(0)], # for initial CSV activation only
[bip9_blockver(1)],
[bip9_blockver()],
[bip9_blockver(0), "-bip148=0"], # for initial CSV activation only
[bip9_blockver(1), "-bip148=0"],
[bip9_blockver(), "-bip148=0"],
[bip9_blockver(1), "-bip148"],
[bip9_blockver(1)],
[], # non-mining user, restarts with -bip148 on Aug 5th
[], # well connected, non BIP148 peer
[bip9_blockver(1), "-bip148=0"],
["-bip148=0"], # non-mining user, restarts with -bip148 on Aug 5th
["-bip148=0"], # well connected, non BIP148 peer
["-bip148"]] # well connected, BIP148 peer
for ea in self.extra_args:
ea.append('-whitelist=::/0')
Expand Down

0 comments on commit 9fef236

Please sign in to comment.