Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit 5e4badf

Browse files
authored
reduce cluttering by removing debug print command (#6191)
1 parent efc68c3 commit 5e4badf

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

stake-pool/py/stake_pool/state.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,6 @@ def calculate_validator_list_size(max_validators: int) -> int:
179179
def decode(cls, data: str, encoding: str):
180180
data_bytes = decode_byte_string(data, encoding)
181181
parsed = DECODE_VALIDATOR_LIST_LAYOUT.parse(data_bytes)
182-
print(parsed)
183182
return ValidatorList(
184183
max_validators=parsed['max_validators'],
185184
validators=[ValidatorStakeInfo.decode_container(container) for container in parsed['validators']],

0 commit comments

Comments
 (0)