Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(version_control,axelar_gateway)!: version control update to axelar_gateway #208

Merged
merged 8 commits into from
Nov 25, 2024
Merged
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
Prev Previous commit
Next Next commit
fix js test
  • Loading branch information
Foivos committed Nov 22, 2024
commit e35af586dd54153c02882df340cd1d24bd0d26bf
4 changes: 2 additions & 2 deletions test/axelar-gateway.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

const COMMAND_TYPE_ROTATE_SIGNERS = 1;

describe('Axelar Gateway', () => {
describe.only('Axelar Gateway', () => {

Check failure on line 18 in test/axelar-gateway.js

View workflow job for this annotation

GitHub Actions / lint

Unexpected exclusive mocha test
let client;
const operator = Ed25519Keypair.fromSecretKey(arrayify(getRandomBytes32()));
const deployer = Ed25519Keypair.fromSecretKey(arrayify(getRandomBytes32()));
Expand Down Expand Up @@ -77,7 +77,7 @@
let result = await publishPackage(client, deployer, 'axelar_gateway');
packageId = result.packageId;
const creatorCap = result.publishTxn.objectChanges.find(
(change) => change.objectType === `${packageId}::gateway::OwnerCap`,
(change) => change.objectType === `${packageId}::owner_cap::OwnerCap`,
).objectId;
result = await publishPackage(client, deployer, 'relayer_discovery');
const discoveryPackageId = result.packageId;
Expand Down
Loading