Skip to content

Commit

Permalink
Merge branch 'ci/update-release-pipeline' of github.com:axelarnetwork…
Browse files Browse the repository at this point in the history
…/axelar-cgp-sui into ci/update-release-pipeline
  • Loading branch information
apolikamixitos committed Oct 16, 2024
2 parents 7470fdf + 7d4a86e commit 11088c4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions move/its/sources/discovery.move
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ fun interchain_transfer_tx(its: &ITS, reader: &mut AbiReader): Transaction {
transaction::new_move_call(
transaction::new_function(
package_id<ITS>(),
ascii::string(b"service"),
ascii::string(b"its"),
ascii::string(b"receive_interchain_transfer"),
),
arguments,
Expand Down Expand Up @@ -163,7 +163,7 @@ fun deploy_interchain_token_tx(its: &ITS, reader: &mut AbiReader): Transaction {
let move_call = transaction::new_move_call(
transaction::new_function(
package_id<ITS>(),
ascii::string(b"service"),
ascii::string(b"its"),
ascii::string(b"receive_deploy_interchain_token"),
),
arguments,
Expand Down Expand Up @@ -261,7 +261,7 @@ fun test_discovery_interchain_transfer() {
assert!(
call_info.function().package_id_from_function() == package_id<ITS>(),
);
assert!(call_info.function().module_name() == ascii::string(b"service"));
assert!(call_info.function().module_name() == ascii::string(b"its"));
assert!(
call_info.function().name() == ascii::string(b"receive_interchain_transfer"),
);
Expand Down Expand Up @@ -368,7 +368,7 @@ fun test_discovery_deploy_token() {
assert!(
call_info.function().package_id_from_function() == package_id<ITS>(),
);
assert!(call_info.function().module_name() == ascii::string(b"service"));
assert!(call_info.function().module_name() == ascii::string(b"its"));
assert!(
call_info.function().name() == ascii::string(b"receive_deploy_interchain_token"),
);
Expand Down
2 changes: 1 addition & 1 deletion move/its/sources/versioned/its_v0.move
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const MESSAGE_TYPE_RECEIVE_FROM_HUB: u256 = 4;
// === HUB CONSTANTS ===
// Chain name for Axelar. This is used for routing ITS calls via ITS hub on
// Axelar.
const ITS_HUB_CHAIN_NAME: vector<u8> = b"axelarnet";
const ITS_HUB_CHAIN_NAME: vector<u8> = b"axelar";
// Identifier to be used as destination address for chains that route to hub.
// For Sui this will probably be every supported chain.
const ITS_HUB_ROUTING_IDENTIFIER: vector<u8> = b"hub";
Expand Down

0 comments on commit 11088c4

Please sign in to comment.