Skip to content

Commit

Permalink
Move files
Browse files Browse the repository at this point in the history
  • Loading branch information
iamyulong committed Oct 12, 2023
1 parent 0e352ad commit fbe5aa8
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 7 deletions.
3 changes: 0 additions & 3 deletions simulator/src/ledger/mod.rs

This file was deleted.

2 changes: 0 additions & 2 deletions simulator/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/// Provides a file-based ledger.
pub mod ledger;
/// Transaction replay.
pub mod replay;
/// Radix Engine Simulator CLI.
Expand Down
2 changes: 1 addition & 1 deletion simulator/src/resim/cmd_show.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use crate::{ledger::*, resim::*};
use crate::resim::*;
use clap::Parser;
use radix_engine::types::*;
use radix_engine_stores::rocks_db::RocksdbSubstateStore;
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion simulator/src/resim/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use sbor::*;
use transaction::errors::*;
use transaction::model::PrepareError as TransactionPrepareError;

use crate::ledger::EntityDumpError;
use crate::resim::EntityDumpError;
use crate::utils::*;

/// Represents a resim error.
Expand Down
2 changes: 2 additions & 0 deletions simulator/src/resim/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ mod cmd_show_configs;
mod cmd_show_ledger;
mod cmd_transfer;
mod config;
mod dumper;
mod error;

pub use addressing::*;
Expand All @@ -46,6 +47,7 @@ pub use cmd_show_configs::*;
pub use cmd_show_ledger::*;
pub use cmd_transfer::*;
pub use config::*;
pub use dumper::*;
pub use error::*;

pub const DEFAULT_SCRYPTO_DIR_UNDER_HOME: &'static str = ".scrypto";
Expand Down

0 comments on commit fbe5aa8

Please sign in to comment.