Skip to content

Commit

Permalink
Sorted import and fixed test missing argument
Browse files Browse the repository at this point in the history
  • Loading branch information
jdsika committed Nov 18, 2022
1 parent fe46d6e commit 9364943
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
5 changes: 3 additions & 2 deletions src/main.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import os
import sys
from datetime import date

import pip
import pkg_resources
from datetime import date
from Constants import PYTHON_MAJOR, PYTHON_MINOR

from Constants import PYTHON_MAJOR, PYTHON_MINOR

REQUIREMENTS_FILE_PATH = "requirements.txt"
NEW_PROTOCOL_DATE = date(2022, 12, 20) # potentially the next upgrade
Expand Down
9 changes: 5 additions & 4 deletions tests/regression/test_gas_estimation_oven_kt1.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@
network = {"NAME": "MAINNET", "MINIMAL_BLOCK_DELAY": 5}

baking_config = make_config(
"tz1NRGxXV9h6SdNaZLcgmjuLx3hyy2f8YoGN",
"tz1NRGxXV9h6SdNaZLcgmjuLx3hyy2f8YoGN",
14.99,
0,
baking_address="tz1NRGxXV9h6SdNaZLcgmjuLx3hyy2f8YoGN",
payment_address="tz1NRGxXV9h6SdNaZLcgmjuLx3hyy2f8YoGN",
service_fee=14.99,
min_delegation_amt=0,
min_payment_amt=0,
)


Expand Down

0 comments on commit 9364943

Please sign in to comment.