Skip to content

Commit

Permalink
Deploy testnet4 & mainnet3 agents with image that includes merkle tre…
Browse files Browse the repository at this point in the history
…e indexing fix (#2957)

### Description

Image from the latest PR to trevor/new-featv3-cosmos-oct-28, which is
#2912

This includes a fix to merkle tree indexing so it indexes it in the same
way as messages

### Drive-by changes

<!--
Are there any minor or drive-by changes also included?
-->

### Related issues

<!--
- Fixes #[issue number here]
-->

### Backward compatibility

<!--
Are these changes backward compatible? Are there any infrastructure
implications, e.g. changes that would prohibit deploying older commits
using this infra tooling?

Yes/No
-->

### Testing

<!--
What kind of testing have these changes undergone?

None/Manual/Unit Tests
-->
  • Loading branch information
tkporter authored Nov 22, 2023
1 parent c41345c commit 8db8fcd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions typescript/infra/config/environments/mainnet3/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ const hyperlane: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: '2e1db12-20231025-013013',
tag: '1bee32a-20231121-121303',
},
gasPaymentEnforcement,
},
validators: {
docker: {
repo,
tag: '2e1db12-20231025-013013',
tag: '1bee32a-20231121-121303',
},
rpcConsensusType: RpcConsensusType.Quorum,
chains: validatorChainConfig(Contexts.Hyperlane),
Expand All @@ -58,7 +58,7 @@ const hyperlane: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: '2e1db12-20231025-013013',
tag: '1bee32a-20231121-121303',
},
},
};
Expand Down
6 changes: 3 additions & 3 deletions typescript/infra/config/environments/testnet4/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const hyperlane: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: 'fd890d2-20231024-132022',
tag: '1bee32a-20231121-121303',
},
blacklist: [
...releaseCandidateHelloworldMatchingList,
Expand All @@ -66,15 +66,15 @@ const hyperlane: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: 'fd890d2-20231024-132022',
tag: '1bee32a-20231121-121303',
},
chains: validatorChainConfig(Contexts.Hyperlane),
},
scraper: {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: 'fd890d2-20231024-132022',
tag: '1bee32a-20231121-121303',
},
},
};
Expand Down

0 comments on commit 8db8fcd

Please sign in to comment.