Skip to content

Commit

Permalink
[hyperledger-iroha#2118]: WIP: Default config
Browse files Browse the repository at this point in the history
Signed-off-by: Ilia Churin <[email protected]>
  • Loading branch information
ilchu committed Aug 2, 2022
1 parent b8fc0c6 commit 45f3643
Show file tree
Hide file tree
Showing 15 changed files with 1,216 additions and 819 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ use std::{panic, path::PathBuf, sync::Arc};

use color_eyre::eyre::{eyre, Result, WrapErr};
use iroha_actor::{broker::*, prelude::*};
use iroha_config::iroha::Configuration;
use iroha_config::base::proxy::DocsDefault;
use iroha_config::iroha::{Configuration, ConfigurationProxy};
use iroha_core::{
block_sync::{BlockSynchronizer, BlockSynchronizerTrait},
genesis::{GenesisNetwork, GenesisNetworkTrait, RawGenesisBlock},
Expand Down
2 changes: 2 additions & 0 deletions cli/src/samples.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
use std::{collections::HashSet, str::FromStr};

use iroha_config::{
base::proxy::DocsDefault,
block_sync::Configuration as BlockSyncConfiguration,
genesis::Configuration as GenesisConfiguration,
iroha::Configuration,
Expand All @@ -13,6 +14,7 @@ use iroha_config::{
wasm::Configuration as WasmConfiguration,
wsv::Configuration as WsvConfiguration,
};

use iroha_crypto::{KeyPair, PublicKey};
use iroha_data_model::peer::Id as PeerId;

Expand Down
1 change: 1 addition & 0 deletions config/base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ serde_json = "1.0"
thiserror = "1.0.30"
crossbeam = "0.8.1"
derive_more = "0.99.17"
eyre = "0.6.8"
Loading

0 comments on commit 45f3643

Please sign in to comment.