Skip to content

Commit

Permalink
fixup! chore: bump HELM_CHART_VERSION to 0.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
turadg committed Jul 12, 2024
1 parent d5307de commit 2cc21cc
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/multichain-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
# uses ghcr.io/agoric/agoric-sdk:dev image (latest master)
values: ./agoric-sdk/multichain-testing/config.yaml
port-forward: true
version: 0.2.2
version: 0.2.8
timeout: 30m
namespace: agoric-multichain

Expand Down
11 changes: 0 additions & 11 deletions multichain-testing/scripts/fetch-starship-chain-info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,6 @@ const ibc: {
data: IBCInfo[];
} = await fetch(`${BASE_URL}ibc`).then(r => r.json());

// UNTIL https://github.com/cosmology-tech/starship/issues/494
const backmap = {
agoriclocal: 'agoric',
osmosislocal: 'osmosis',
gaialocal: 'cosmoshub',
};
for (const ibcInfo of ibc.data) {
ibcInfo.chain_1.chain_name = backmap[ibcInfo.chain_1.chain_name];
ibcInfo.chain_2.chain_name = backmap[ibcInfo.chain_2.chain_name];
}

const chainInfo = await convertChainInfo({
chains,
ibcData: ibc.data,
Expand Down
7 changes: 0 additions & 7 deletions multichain-testing/test/stake-ica.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,13 +103,6 @@ const stakeScenario = test.macro(async (t, scenario: StakeIcaScenario) => {
`address for ${scenario.chain} is valid`,
);

if (scenario.chain === 'cosmoshub') {
// see https://github.com/cosmos/cosmjs/pull/1593 for upstream fix
t.pass(
`SKIP ${scenario.chain}. @cosmjs/faucet does not support ICA address length.`,
);
return;
}
const { creditFromFaucet, getRestEndpoint } = useChain(scenario.chain);
const queryClient = makeQueryClient(getRestEndpoint());

Expand Down

0 comments on commit 2cc21cc

Please sign in to comment.