Skip to content

Commit

Permalink
cmon
Browse files Browse the repository at this point in the history
  • Loading branch information
tkporter committed Dec 7, 2024
1 parent e556629 commit b12bb5c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion rust/main/chains/hyperlane-sealevel/src/priority_fee.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ impl PriorityFeeOracle for HeliusPriorityFeeOracle {
.await
.map_err(ChainCommunicationError::from_other)?;

tracing::trace!(priority_fee_levels = ?response.result.priority_fee_levels, "Fetched priority fee levels");
tracing::warn!(priority_fee_levels = ?response.result.priority_fee_levels, "Fetched priority fee levels");

let fee = response
.result
Expand Down
5 changes: 3 additions & 2 deletions rust/main/helm/hyperlane-agent/templates/external-secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ spec:
{{- if eq .protocol "cosmos" }}
HYP_CHAINS_{{ .name | upper }}_CUSTOMGRPCURLS: {{ printf "'{{ .%s_grpcs | mustFromJson | join \",\" }}'" .name }}
{{- end }}
{{- if and (eq .protocol "sealevel") (eq .priorityFeeOracle.type "helius") }}
{{- if and (eq .protocol "sealevel") (eq ((.priorityFeeOracle).type) "helius") }}
HYP_CHAINS_{{ .name | upper }}_PRIORITYFEEORACLE_URL: {{ printf "'{{ .%s_helius }}'" .name }}
{{- end }}
{{- end }}
Expand All @@ -48,8 +48,9 @@ spec:
remoteRef:
key: {{ printf "%s-grpc-endpoints-%s" $.Values.hyperlane.runEnv .name }}
{{- end }}
{{- if and (eq .protocol "sealevel") (eq .priorityFeeOracle.type "helius") }}
{{- if and (eq .protocol "sealevel") (eq ((.priorityFeeOracle).type) "helius") }}
- secretKey: {{ printf "%s_helius" .name }}
remoteRef:
key: {{ printf "%s-rpc-endpoint-helius-%s" $.Values.hyperlane.runEnv .name }}
{{- end }}
{{- end }}
2 changes: 1 addition & 1 deletion typescript/infra/config/environments/mainnet3/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ const releaseCandidate: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: '8e6427c-20241206-202715',
tag: 'e556629-20241207-052607',
},
// We're temporarily (ab)using the RC relayer as a way to increase
// message throughput.
Expand Down

0 comments on commit b12bb5c

Please sign in to comment.