test to make sure next release tests pass
This commit is contained in:
parent
c157909b4e
commit
ebb2a09107
3 changed files with 4 additions and 4 deletions
|
@ -1,2 +1,2 @@
|
|||
__version__ = "0.56.0"
|
||||
__version__ = "0.57.0"
|
||||
version = tuple(map(int, __version__.split('.'))) # pylint: disable=invalid-name
|
||||
|
|
|
@ -148,7 +148,7 @@ class ClientSession(BaseClientSession):
|
|||
class Network:
|
||||
|
||||
PROTOCOL_VERSION = __version__
|
||||
MINIMUM_REQUIRED = (0, 54, 0)
|
||||
MINIMUM_REQUIRED = (0, 57, 0)
|
||||
|
||||
def __init__(self, ledger):
|
||||
self.ledger = ledger
|
||||
|
|
|
@ -25,7 +25,7 @@ class NetworkTests(IntegrationTestCase):
|
|||
'hash_function': 'sha256',
|
||||
'hosts': {},
|
||||
'protocol_max': '0.99.0',
|
||||
'protocol_min': '0.54.0',
|
||||
'protocol_min': '0.57.0',
|
||||
'pruning': None,
|
||||
'description': '',
|
||||
'payment_address': '',
|
||||
|
@ -44,7 +44,7 @@ class NetworkTests(IntegrationTestCase):
|
|||
'hash_function': 'sha256',
|
||||
'hosts': {},
|
||||
'protocol_max': '0.99.0',
|
||||
'protocol_min': '0.54.0',
|
||||
'protocol_min': '0.57.0',
|
||||
'pruning': None,
|
||||
'description': 'Fastest server in the west.',
|
||||
'payment_address': address,
|
||||
|
|
Loading…
Reference in a new issue