Skip to content

Commit

Permalink
Merge pull request #115 from skalenetwork/enhancement/SKALE-2261-upda…
Browse files Browse the repository at this point in the history
…te-delegation-functionality

SKALE-2261 Fix functions after SM merge
  • Loading branch information
dmytrotkk authored Mar 2, 2020
2 parents 73ecc20 + be39d38 commit 007824e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion skale/contracts/data/schains_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@


FIELDS = [
'name', 'owner', 'indexInOwnerList', 'partOfNode', 'lifetime', 'startDate',
'name', 'owner', 'indexInOwnerList', 'partOfNode', 'lifetime', 'startDate', 'startBlock',
'deposit', 'index', 'chainId'
]

Expand Down
2 changes: 1 addition & 1 deletion skale/contracts/delegation/validator_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

FIELDS = [
'name', 'validator_address', 'requested_address', 'description', 'fee_rate',
'registration_time', 'minimum_delegation_amount', 'last_bounty_collection_month'
'registration_time', 'minimum_delegation_amount'
]


Expand Down
2 changes: 1 addition & 1 deletion tests/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
LIFETIME_YEARS = 1
LIFETIME_SECONDS = LIFETIME_YEARS * 366 * 86400

EMPTY_SCHAIN_ARR = ['', '0x0000000000000000000000000000000000000000', 0, 0, 0, 0, 0, 0]
EMPTY_SCHAIN_ARR = ['', '0x0000000000000000000000000000000000000000', 0, 0, 0, 0, 0, 0, 0]
EMPTY_ETH_ACCOUNT = '0x0000000000000000000000000000000000000001'

MIN_NODES_IN_SCHAIN = 2
Expand Down

0 comments on commit 007824e

Please sign in to comment.