Skip to content

Commit

Permalink
reduce cluttering by removing debug print command (#6191)
Browse files Browse the repository at this point in the history
  • Loading branch information
kagren authored Jan 27, 2024
1 parent efc68c3 commit 5e4badf
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion stake-pool/py/stake_pool/state.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,6 @@ def calculate_validator_list_size(max_validators: int) -> int:
def decode(cls, data: str, encoding: str):
data_bytes = decode_byte_string(data, encoding)
parsed = DECODE_VALIDATOR_LIST_LAYOUT.parse(data_bytes)
print(parsed)
return ValidatorList(
max_validators=parsed['max_validators'],
validators=[ValidatorStakeInfo.decode_container(container) for container in parsed['validators']],
Expand Down

0 comments on commit 5e4badf

Please sign in to comment.