Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Zajkowski committed Sep 17, 2024
1 parent e501dcd commit e4679ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ use super::{
internal_transaction_v1_body::InternalTransactionV1Body,
internal_transaction_v1_header::InternalTransactionV1Header,
};
use alloc::{collections::BTreeSet, vec::Vec};
use casper_types::{
bytesrepr, crypto, Approval, ApprovalsHash, Chainspec, DisplayIter, Gas, GasLimited,
InvalidTransactionV1, Motes, PricingMode, RuntimeArgs, TimeDiff, Timestamp,
Expand All @@ -20,6 +19,7 @@ use datasize::DataSize;
#[cfg(any(feature = "once_cell", test))]
use once_cell::sync::OnceCell;
use serde::Serialize;
use std::{cmp, collections::BTreeSet};
use tracing::debug;

#[cfg_attr(feature = "datasize", derive(DataSize))]
Expand Down
2 changes: 1 addition & 1 deletion internal_types/src/internal_transaction/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ mod internal_transaction_v1;
mod internal_transaction_v1_body;
mod internal_transaction_v1_header;

use alloc::{collections::BTreeSet, vec::Vec};
use casper_execution_engine::engine_state::{SessionDataDeploy, SessionDataV1, SessionInputData};
use casper_types::{
account::AccountHash, bytesrepr, Approval, ApprovalsHash, Chainspec, Deploy, Digest, Gas,
Expand All @@ -17,6 +16,7 @@ pub use internal_transaction_v1::InternalTransactionV1;
pub use internal_transaction_v1_body::InternalTransactionV1Body;
pub use internal_transaction_v1_header::InternalTransactionV1Header;
use serde::Serialize;
use std::collections::BTreeSet;
use tracing::error;

pub const ARGS_MAP_KEY: u16 = 0;
Expand Down

0 comments on commit e4679ab

Please sign in to comment.