From 3e21ee45807eb7b3ab32ed8de832f272988632eb Mon Sep 17 00:00:00 2001 From: liav-certora Date: Wed, 8 Jan 2025 02:29:22 +0200 Subject: [PATCH 1/2] Update pretty_printer.py --- Quorum/utils/pretty_printer.py | 4 ++-- version | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Quorum/utils/pretty_printer.py b/Quorum/utils/pretty_printer.py index 0d6cb84..d9683a7 100644 --- a/Quorum/utils/pretty_printer.py +++ b/Quorum/utils/pretty_printer.py @@ -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) diff --git a/version b/version index 70388c5..cffabf9 100644 --- a/version +++ b/version @@ -1 +1 @@ -20250107.201507.181876 +20250108.022922.481801 From 60fade597805335fb4695b9116ea6d80b7a15c3e Mon Sep 17 00:00:00 2001 From: liav-certora Date: Wed, 8 Jan 2025 10:27:45 +0200 Subject: [PATCH 2/2] Update CI.yml --- .github/workflows/CI.yml | 1 + version | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 16d480e..cfadbba 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -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 diff --git a/version b/version index cffabf9..9abb6d0 100644 --- a/version +++ b/version @@ -1 +1 @@ -20250108.022922.481801 +20250108.102745.806579