Skip to content

Commit

Permalink
Tweak devsetup.rs
Browse files Browse the repository at this point in the history
Signed-off-by: Bogdan Mircea <[email protected]>
  • Loading branch information
bobozaur committed Oct 18, 2023
1 parent 966c2be commit 201afe1
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions aries_vcx/src/utils/devsetup.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![allow(clippy::unwrap_used)]
#![allow(unused_imports)]

use std::{
env, fs,
Expand All @@ -19,21 +20,22 @@ use aries_vcx_core::{
GetTxnAuthorAgreementData, IndyVdrLedgerRead, IndyVdrLedgerReadConfig,
IndyVdrLedgerWrite, IndyVdrLedgerWriteConfig, ProtocolVersion,
},
request_submitter::{
vdr_ledger::{IndyVdrLedgerPool, IndyVdrSubmitter},
vdr_proxy::VdrProxySubmitter,
},
request_submitter::vdr_ledger::{IndyVdrLedgerPool, IndyVdrSubmitter},
response_cacher::in_memory::{InMemoryResponseCacher, InMemoryResponseCacherConfig},
},
wallet::{
base_wallet::BaseWallet,
indy::{
did_mocks::DidMocks,
wallet::{create_and_open_wallet, create_and_store_my_did},
WalletConfig,
},
wallet::base_wallet::BaseWallet,
PoolConfig, ResponseParser,
};
#[cfg(feature = "vdr_proxy_ledger")]
use aries_vcx_core::{ledger::request_submitter::vdr_proxy::VdrProxySubmitter, VdrProxyClient};
#[cfg(feature = "vdrtools_wallet")]
use aries_vcx_core::{
wallet::indy::{
did_mocks::DidMocks,
wallet::{create_and_open_wallet, create_and_store_my_did},
WalletConfig,
},
PoolConfig, ResponseParser, VdrProxyClient, WalletHandle,
WalletHandle,
};
use chrono::{DateTime, Duration, Utc};

Expand Down

0 comments on commit 201afe1

Please sign in to comment.