Skip to content

Commit

Permalink
wip remove mention to hyperledger-iroha#4409
Browse files Browse the repository at this point in the history
Signed-off-by: Shunkichi Sato <49983831+s8sato@users.noreply.github.com>
  • Loading branch information
s8sato committed Apr 27, 2024
1 parent 1ed1440 commit c82544d
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion cli/src/samples.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ pub fn get_user_config(
let (peer_public_key, peer_private_key) =
peer_key_pair.unwrap_or_else(KeyPair::random).into_parts();
iroha_logger::info!(%peer_public_key);
// TODO remove "genesis account" #4409
let (genesis_public_key, genesis_private_key) = genesis_key_pair
.unwrap_or_else(KeyPair::random)
.into_parts();
Expand Down
1 change: 0 additions & 1 deletion config/iroha_test_config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ address = "127.0.0.1:1337"

[genesis]
file = "./genesis.json"
# TODO remove "genesis account" #4409
public_key = "ed01204CFFD0EE429B1BDD36B3910EC570852B8BB63F18750341772FB46BC856C5CAAF"
private_key = { algorithm = "ed25519", payload = "D748E18CE60CB30DEA3E73C9019B7AF45A8D465E3D71BCC9A5EF99A008205E534CFFD0EE429B1BDD36B3910EC570852B8BB63F18750341772FB46BC856C5CAAF" }

Expand Down
1 change: 0 additions & 1 deletion config/tests/fixtures/full.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ private_key = { algorithm = "ed25519", payload = "8f4c15e5d664da3f13778801d23d4e

[genesis]
file = "genesis.json"
# TODO remove "genesis account" #4409
public_key = "ed01208BA62848CF767D72E7F7F4B9D2D7BA07FEE33760F79ABE5597A51520E292A0CB"
private_key = { algorithm = "ed25519", payload = "8f4c15e5d664da3f13778801d23d4e89b76e94c1b94b389544168b6cb894f84f8ba62848cf767d72e7f7f4b9d2d7ba07fee33760f79abe5597a51520e292a0cb" }

Expand Down
1 change: 0 additions & 1 deletion configs/peer.template.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

[genesis]
# file =
# TODO remove "genesis account" #4409
# public_key =
# private_key = { algorithm = "", payload = "" }

Expand Down
1 change: 0 additions & 1 deletion genesis/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ use serde::{Deserialize, Serialize};
pub static GENESIS_DOMAIN_ID: Lazy<DomainId> = Lazy::new(|| "genesis".parse().unwrap());

/// [`AccountId`](iroha_data_model::account::AccountId) of the genesis account.
/// TODO remove "genesis account" #4409
pub static GENESIS_ACCOUNT_ID: Lazy<AccountId> = Lazy::new(|| {
AccountId::new(
GENESIS_DOMAIN_ID.clone(),
Expand Down

0 comments on commit c82544d

Please sign in to comment.