Skip to content

Commit 57bab58

Browse files
committed
Remove debugging prints
1 parent b6a6209 commit 57bab58

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/dvspec/consensus.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ def consensus_on_attestation(slashing_db: SlashingDB, attestation_duty: Attestat
3636
The consensus protocol must use `consensus_is_valid_attestation_data` to determine
3737
validity of the proposed attestation value.
3838
"""
39-
print("This is the wrong consensus_on_attestation")
4039
pass
4140

4241

tests/helpers/consensus.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ def consensus_on_attestation(slashing_db: SlashingDB, attestation_duty: Attestat
3333
validity of the proposed attestation value.
3434
"""
3535
# TODO: Use this method in tests instead of dvspec.consensus.consensus_on_attestation
36-
print("This is the correct consensus_on_attestation")
3736
attestation_data = bn_produce_attestation_data(attestation_duty.slot, attestation_duty.committee_index)
3837
assert consensus_is_valid_attestation_data(slashing_db, attestation_data, attestation_duty)
3938
return attestation_data

0 commit comments

Comments
 (0)