Skip to content

Commit fd5b96f

Browse files
committed
Update regtest RPC port for new v0.16.0 default
Unfortunately this bumps the "fully-compatible" bitcoind version for RPC to v0.16.0
1 parent ef76253 commit fd5b96f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

bitcoin/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class TestNetParams(bitcoin.core.CoreTestNetParams):
4747
class RegTestParams(bitcoin.core.CoreRegTestParams):
4848
MESSAGE_START = b'\xfa\xbf\xb5\xda'
4949
DEFAULT_PORT = 18444
50-
RPC_PORT = 18332
50+
RPC_PORT = 18443
5151
DNS_SEEDS = ()
5252
BASE58_PREFIXES = {'PUBKEY_ADDR':111,
5353
'SCRIPT_ADDR':196,

bitcoin/rpc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (C) 2007 Jan-Klaas Kollhof
2-
# Copyright (C) 2011-2015 The python-bitcoinlib developers
2+
# Copyright (C) 2011-2018 The python-bitcoinlib developers
33
#
44
# This file is part of python-bitcoinlib.
55
#
@@ -300,7 +300,7 @@ class Proxy(BaseProxy):
300300
Unlike ``RawProxy``, data is passed as ``bitcoin.core`` objects or packed
301301
bytes, rather than JSON or hex strings. Not all methods are implemented
302302
yet; you can use ``call`` to access missing ones in a forward-compatible
303-
way. Assumes Bitcoin Core version >= v0.15.0; older versions mostly work,
303+
way. Assumes Bitcoin Core version >= v0.16.0; older versions mostly work,
304304
but there are a few incompatibilities.
305305
"""
306306

0 commit comments

Comments
 (0)