Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
dinhani-cw committed Jul 29, 2024
1 parent d9038a4 commit f3859b2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/eth/miner/miner_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use display_json::DebugAsJson;

use crate::eth::miner::Miner;
#[cfg(feature = "dev")]
use crate::eth::primitives::dev_accounts;
use crate::eth::primitives::test_accounts;
use crate::eth::primitives::Block;
use crate::eth::primitives::BlockFilter;
use crate::eth::primitives::BlockNumber;
Expand Down
2 changes: 1 addition & 1 deletion src/eth/primitives/account.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ impl From<&Account> for RevmAccountInfo {
// -----------------------------------------------------------------------------

/// Accounts to be used only in development-mode.
pub fn dev_accounts() -> Vec<Account> {
pub fn test_accounts() -> Vec<Account> {
use hex_literal::hex;

[
Expand Down
2 changes: 1 addition & 1 deletion src/eth/primitives/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ mod transaction_stage;
mod unix_time;
mod wei;

pub use account::dev_accounts;
pub use account::test_accounts;
pub use account::Account;
pub use address::Address;
pub use block::Block;
Expand Down

0 comments on commit f3859b2

Please sign in to comment.