Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix IPFS Validator Print Bug #70

Merged
merged 2 commits into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,4 @@ jobs:
Quorum validate-address --customer Aave --chain Ethereum --proposal_address 0xAD6c03BF78A3Ee799b86De5aCE32Bb116eD24637
Quorum validate-batch --config Quorum/tests/regression.json
Quorum validate-by-id --proposal_id 137 --customer Aave
Quorum validate-ipfs --proposal_id 20 --chain Scroll --proposal_address 0x2B25cb729D90630395Cd3140f3460a73A41Fe5f0
4 changes: 2 additions & 2 deletions Quorum/utils/pretty_printer.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ class Colors(StrEnum):
RESET = '\033[0m'


def pprint(message: str, status: Colors, heading: Optional[Heading]=None):
s = status + message + Colors.RESET
def pprint(message: object, status: Colors, heading: Optional[Heading]=None):
s = status + str(message) + Colors.RESET
if heading:
s += '\n' + heading * len(message) + '\n'
print(s)
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20250107.201507.181876
20250108.102745.806579
Loading