Skip to content

Commit

Permalink
adjust crate name
Browse files Browse the repository at this point in the history
  • Loading branch information
kziemianek committed Jan 28, 2024
1 parent 381771c commit 368770b
Show file tree
Hide file tree
Showing 63 changed files with 146 additions and 136 deletions.
77 changes: 41 additions & 36 deletions bitacross-worker/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions bitacross-worker/app-libs/parentchain-interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ edition = "2021"
sgx_tstd = { branch = "master", git = "https://github.com/apache/teaclave-sgx-sdk.git", optional = true }

# local dependencies
ba-itp-utils = { path = "../../core-primitives/utils", default-features = false }
ita-sgx-runtime = { path = "../sgx-runtime", default-features = false }
ita-stf = { path = "../stf", default-features = false }
itc-parentchain-indirect-calls-executor = { path = "../../core/parentchain/indirect-calls-executor", default-features = false }
itp-api-client-types = { path = "../../core-primitives/node-api/api-client-types", default-features = false }
itp-node-api = { path = "../../core-primitives/node-api", default-features = false }
itp-stf-primitives = { path = "../../core-primitives/stf-primitives", default-features = false }
itp-types = { path = "../../core-primitives/types", default-features = false }
itp-utils = { path = "../../core-primitives/utils", default-features = false }

# no-std compatible libraries
bs58 = { version = "0.4.0", default-features = false, features = ["alloc"] }
Expand Down Expand Up @@ -57,7 +57,7 @@ std = [
"itp-stf-primitives/std",
"itp-top-pool-author/std",
"itp-types/std",
"ba-itp-utils/std",
"itp-utils/std",
"log/std",
#substrate
"sp-core/std",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@

use codec::Encode;

use ba_itp_utils::hex::hex_encode;
pub use ita_sgx_runtime::{Balance, Index};
use ita_stf::{Getter, TrustedCall, TrustedCallSigned};
use itc_parentchain_indirect_calls_executor::error::Error;
use itp_stf_primitives::{traits::IndirectExecutor, types::TrustedOperation};
use itp_types::parentchain::{AccountId, FilterEvents, HandleParentchainEvents, ParentchainError};
use itp_utils::hex::hex_encode;
use log::*;

pub struct ParentchainEventHandler {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
use codec::Encode;
pub use ita_sgx_runtime::{Balance, Index};

use ba_itp_utils::hex::hex_encode;
use ita_stf::{Getter, TrustedCall, TrustedCallSigned};
use itc_parentchain_indirect_calls_executor::error::Error;
use itp_stf_primitives::{traits::IndirectExecutor, types::TrustedOperation};
use itp_types::parentchain::{AccountId, FilterEvents, HandleParentchainEvents, ParentchainError};
use itp_utils::hex::hex_encode;
use log::*;

pub struct ParentchainEventHandler {}
Expand Down
Loading

0 comments on commit 368770b

Please sign in to comment.