我在 Nuget 版本 1.5.5 中使用 Hyperledger.Aries.Routing.Mediator 并希望使用 Hyperledger Indy-Postgres 插件而不是默认的 SQLlite。我认为我必须在我的代码中定义类似的东西
options.WalletConfiguration.StorageType = "postgres_storage";
连同一些 WalletStorageConfigurations 和 StorageCredentials;
在我的调解员开始时,我收到以下错误:
Unhandled exception. Hyperledger.Indy.WalletApi.UnknownWalletTypeException: The wallet type specified has not been registered.
=> 问题:
- 我必须在其他地方做一些初始化吗?
- 我该怎么做才能安装 postgres-plugin 本身?
- 是否有任何文档优于 indy-sdk - 文档?