Skip to content

Commit 568450b

Browse files
fix: incorrect function inputs for rotate verifiers (axelarnetwork#1057)
Co-authored-by: Blockchain Guy <[email protected]>
1 parent 5d3eeec commit 568450b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

axelar-chains-config/info/testnet.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3891,7 +3891,7 @@
38913891
},
38923892
"axelarId": "axelar",
38933893
"chainId": "axelar-testnet-lisbon-3",
3894-
"rpc": "https://tm.axelar-testnet.lava.build",
3894+
"rpc": "https://tm.axelar-testnet.lava.build:443",
38953895
"lcd": "https://rest.axelar-testnet.lava.build",
38963896
"grpc": "grpc.axelar-testnet.lava.build:443",
38973897
"tokenSymbol": "AXL",

cosmwasm/rotate-signers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const getVerifierSetStatus = async (config, chain, client, verifierStatus) => {
2020
const updateVerifierSet = async (client, config, _options, [chain], fee) => {
2121
const [account] = client.accounts;
2222

23-
const currentVerifierSet = await getCurrentVerifierSet(config.axelar, chain, client);
23+
const currentVerifierSet = await getCurrentVerifierSet(config.axelar, chain);
2424
printInfo('Current verifier set', currentVerifierSet);
2525

2626
const { transactionHash, events } = await executeTransaction(

0 commit comments

Comments
 (0)