Skip to content

Commit

Permalink
add missing imports
Browse files Browse the repository at this point in the history
  • Loading branch information
haerdib committed Mar 13, 2023
1 parent 796d122 commit 64b4183
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions primitives/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,12 @@ pub use extrinsic_params::*;
pub use extrinsics::*;
pub use pallet_traits::*;
pub use rpc_params::RpcParams;
pub use signer::*;
pub use types::*;

pub mod extrinsic_params;
pub mod extrinsics;
pub mod pallet_traits;
pub mod rpc_params;
pub mod signer;
pub mod types;
3 changes: 2 additions & 1 deletion src/api/api_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ use crate::{
};
use ac_compose_macros::rpc_params;
use ac_node_api::metadata::Metadata;
use ac_primitives::{ExtrinsicParams, FrameSystemConfig};
use ac_primitives::{ExtrinsicParams, FrameSystemConfig, SignExtrinsic};
use codec::Decode;
use sp_core::Bytes;
use core::convert::TryFrom;
use frame_metadata::RuntimeMetadataPrefixed;
use log::{debug, info};
Expand Down

0 comments on commit 64b4183

Please sign in to comment.