Skip to content

Commit

Permalink
Fix max_operations_ttl for Parisnet
Browse files Browse the repository at this point in the history
  • Loading branch information
igorsereda committed Jun 27, 2024
1 parent 85a7ce8 commit ddee28a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/pytezos/operation/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DEFAULT_BURN_RESERVE = 100
DEFAULT_GAS_RESERVE = 100
DEFAULT_OPERATIONS_TTL = 5
MAX_OPERATIONS_TTL = 240
MAX_OPERATIONS_TTL = 120
6 changes: 3 additions & 3 deletions tests/unit_tests/test_operation/test_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ def test_fill(self, rpc_mock):
testmap = {
"branch_offset_sandboxed": [5, None, True, 'head~5'],
"branch_offset_not_sandboxed": [5, None, False, 'head~5'],
"ttl_sandboxed": [None, 10, True, 'head~230'],
"ttl_not_sandboxed": [None, 10, False, 'head~230'],
"ttl_sandboxed": [None, 10, True, 'head~110'],
"ttl_not_sandboxed": [None, 10, False, 'head~110'],
"ttl_sandboxed_default": [None, None, True, 'head~0'],
"ttl_not_sandboxed_default": [None, None, False, 'head~235'],
"ttl_not_sandboxed_default": [None, None, False, 'head~115'],
}

client = PyTezosClient()
Expand Down

0 comments on commit ddee28a

Please sign in to comment.