Fix missing viper variable

This commit is contained in:
Jim McDonald
2020-11-18 09:33:09 +00:00
parent 405b2d66de
commit b30db1b6c7

View File

@@ -66,6 +66,8 @@ func SetupStore() error {
if err := e2wallet.UseStore(store); err != nil {
return errors.Wrap(err, "failed to use defined wallet store")
}
viper.Set("store", store)
return nil
}