mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-02 09:46:52 -05:00
net: enable v2transport by default
This commit is contained in:
parent
411ba32af2
commit
0bef1042ce
2 changed files with 10 additions and 3 deletions
|
@ -97,7 +97,7 @@ static constexpr bool DEFAULT_FIXEDSEEDS{true};
|
|||
static const size_t DEFAULT_MAXRECEIVEBUFFER = 5 * 1000;
|
||||
static const size_t DEFAULT_MAXSENDBUFFER = 1 * 1000;
|
||||
|
||||
static constexpr bool DEFAULT_V2_TRANSPORT{false};
|
||||
static constexpr bool DEFAULT_V2_TRANSPORT{true};
|
||||
|
||||
typedef int64_t NodeId;
|
||||
|
||||
|
|
|
@ -130,8 +130,15 @@ class TestNode():
|
|||
# Default behavior from global -v2transport flag is added to args to persist it over restarts.
|
||||
# May be overwritten in individual tests, using extra_args.
|
||||
self.default_to_v2 = v2transport
|
||||
if self.default_to_v2:
|
||||
self.args.append("-v2transport=1")
|
||||
if self.version_is_at_least(260000):
|
||||
# 26.0 and later support v2transport
|
||||
if v2transport:
|
||||
self.args.append("-v2transport=1")
|
||||
else:
|
||||
self.args.append("-v2transport=0")
|
||||
else:
|
||||
# v2transport requested but not supported for node
|
||||
assert not v2transport
|
||||
|
||||
self.cli = TestNodeCLI(bitcoin_cli, self.datadir_path)
|
||||
self.use_cli = use_cli
|
||||
|
|
Loading…
Add table
Reference in a new issue