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

fix(its): move ITS test directory to the correct level #86

Merged
merged 3 commits into from
Nov 22, 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
Next Next commit
fix(its): move ITS test directory to the correct level
AttissNgo committed Nov 22, 2024
commit 2a28efbc0638b4cc176a637c9aba391ce96a1d43
4 changes: 3 additions & 1 deletion contracts/interchain-token-service/src/contract.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
use axelar_soroban_std::ensure;
use soroban_sdk::{contract, contractimpl, Address, Env, String};
use soroban_sdk::{contract, contractimpl, /*symbol_short,*/ Address, Env, String, /*Symbol*/};

use crate::error::ContractError;
use crate::event;
use crate::storage_types::DataKey;

// const ITS_HUB_ROUTING_IDENTIFIER: Symbol = symbol_short!("hub");

#[contract]
pub struct InterchainTokenService;

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::error::ContractError;
use crate::{contract::InterchainTokenService, contract::InterchainTokenServiceClient};
use interchain_token_service::contract::{InterchainTokenService, InterchainTokenServiceClient};
use interchain_token_service::error::ContractError;

use axelar_soroban_std::{assert_contract_err, assert_invoke_auth_err, assert_last_emitted_event};
use soroban_sdk::testutils::{MockAuth, MockAuthInvoke};