Skip to content

Commit

Permalink
fix: basic MT manager also uses indy_vdr
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Bluhm <dbluhm@pm.me>
  • Loading branch information
dbluhm committed May 14, 2024
1 parent 4380389 commit 17bdfb2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions aries_cloudagent/ledger/multiple_ledger/manager_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class MultiIndyLedgerManagerProvider(BaseProvider):
"basic": (
DeferLoad(
"aries_cloudagent.ledger.multiple_ledger."
"indy_manager.MultiIndyLedgerManager"
"indy_vdr_manager.MultiIndyLedgerManager"
)
),
"askar-profile": (
Expand All @@ -35,8 +35,8 @@ class MultiIndyLedgerManagerProvider(BaseProvider):
}
LEDGER_TYPES = {
"basic": {
"pool": DeferLoad("aries_cloudagent.ledger.indy.IndySdkLedgerPool"),
"ledger": DeferLoad("aries_cloudagent.ledger.indy.IndySdkLedger"),
"pool": DeferLoad("aries_cloudagent.ledger.indy_vdr.IndyVdrLedgerPool"),
"ledger": DeferLoad("aries_cloudagent.ledger.indy_vdr.IndyVdrLedger"),
},
"askar-profile": {
"pool": DeferLoad("aries_cloudagent.ledger.indy_vdr.IndyVdrLedgerPool"),
Expand Down

0 comments on commit 17bdfb2

Please sign in to comment.