Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion apps/hip-3-pusher/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "hip-3-pusher"
version = "0.1.4"
version = "0.1.5"
description = "Hyperliquid HIP-3 market oracle pusher"
readme = "README.md"
requires-python = "==3.13.*"
Expand Down
2 changes: 1 addition & 1 deletion apps/hip-3-pusher/src/pusher/kms_signer.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def __init__(self, config: Config, publisher_exchanges: list[Exchange]):
self._load_public_key(config.kms.aws_kms_key_id_path)
except Exception as e:
logger.exception("Failed to load public key from KMS; it might be incorrectly configured; error: {}", repr(e))
exit()
raise Exception("Failed to load public key from KMS") from e

def _load_public_key(self, key_path: str):
# Fetch public key once so we can derive address and check recovery id
Expand Down
Loading