We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6462a1f commit 9d254bdCopy full SHA for 9d254bd
eventsourcingdb/event/event.py
@@ -116,6 +116,9 @@ def verify_hash(self) -> None:
116
metadata_hash = sha256(metadata_bytes).hexdigest()
117
data_hash = sha256(data_bytes).hexdigest()
118
119
+ print("########### Metadata hash: ", metadata_hash)
120
+ print("########### Data hash: ", data_hash)
121
+
122
final_hash = sha256()
123
final_hash.update(metadata_hash.encode("utf-8"))
124
final_hash.update(data_hash.encode("utf-8"))
0 commit comments