Skip to content

Commit

Permalink
moved test_wallets mod.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-marinica committed May 29, 2024
1 parent 51b404e commit 915df0b
Showing 1 changed file with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,60 +6,60 @@ fn test_wallet(pem_file_contents: &str) -> Wallet {

/// Test wallet. Do not use on mainnet.
pub fn alice() -> Wallet {
test_wallet(include_str!("alice.pem"))
test_wallet(include_str!("test_wallets/alice.pem"))
}

/// Test wallet. Do not use on mainnet.
pub fn bob() -> Wallet {
test_wallet(include_str!("bob.pem"))
test_wallet(include_str!("test_wallets/bob.pem"))
}

/// Test wallet. Do not use on mainnet.
pub fn carol() -> Wallet {
test_wallet(include_str!("carol.pem"))
test_wallet(include_str!("test_wallets/carol.pem"))
}

/// Test wallet. Do not use on mainnet.
pub fn dan() -> Wallet {
test_wallet(include_str!("dan.pem"))
test_wallet(include_str!("test_wallets/dan.pem"))
}

/// Test wallet. Do not use on mainnet.
pub fn eve() -> Wallet {
test_wallet(include_str!("eve.pem"))
test_wallet(include_str!("test_wallets/eve.pem"))
}

/// Test wallet. Do not use on mainnet.
pub fn frank() -> Wallet {
test_wallet(include_str!("frank.pem"))
test_wallet(include_str!("test_wallets/frank.pem"))
}

/// Test wallet. Do not use on mainnet.
pub fn grace() -> Wallet {
test_wallet(include_str!("grace.pem"))
test_wallet(include_str!("test_wallets/grace.pem"))
}

/// Test wallet. Do not use on mainnet.
pub fn heidi() -> Wallet {
test_wallet(include_str!("heidi.pem"))
test_wallet(include_str!("test_wallets/heidi.pem"))
}

/// Test wallet. Do not use on mainnet.
pub fn ivan() -> Wallet {
test_wallet(include_str!("ivan.pem"))
test_wallet(include_str!("test_wallets/ivan.pem"))
}

/// Test wallet. Do not use on mainnet.
pub fn judy() -> Wallet {
test_wallet(include_str!("judy.pem"))
test_wallet(include_str!("test_wallets/judy.pem"))
}

/// Test wallet. Do not use on mainnet.
pub fn mallory() -> Wallet {
test_wallet(include_str!("mallory.pem"))
test_wallet(include_str!("test_wallets/mallory.pem"))
}

/// Test wallet. Do not use on mainnet.
pub fn mike() -> Wallet {
test_wallet(include_str!("mike.pem"))
test_wallet(include_str!("test_wallets/mike.pem"))
}

0 comments on commit 915df0b

Please sign in to comment.