-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: use BaseWallet instead of a specific wallet type, closes #1117
Signed-off-by: Ondrej Prazak <[email protected]>
- Loading branch information
Ondrej Prazak
committed
Mar 6, 2024
1 parent
274f776
commit c009c9a
Showing
105 changed files
with
2,976 additions
and
1,966 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
use aries_vcx_core::wallet::indy::{IssuerConfig, WalletConfig}; | ||
use aries_vcx_core::wallet::{ | ||
base_wallet::issuer_config::IssuerConfig, indy::indy_wallet_config::IndyWalletConfig, | ||
}; | ||
use display_as_json::Display; | ||
use serde::Serialize; | ||
|
||
#[derive(Clone, Serialize, Display)] | ||
pub struct AgentConfig { | ||
pub config_wallet: WalletConfig, | ||
pub config_wallet: IndyWalletConfig, | ||
pub config_issuer: IssuerConfig, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.