We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12de6ef commit a6e554dCopy full SHA for a6e554d
packages/wallet/core/src/state/local/memory.ts
@@ -54,12 +54,12 @@ export class MemoryStore implements Store {
54
}
55
56
async loadConfig(imageHash: Hex.Hex): Promise<Config.Config | undefined> {
57
- const config = this.configs.get(imageHash)
+ const config = this.configs.get(imageHash.toLowerCase() as Hex.Hex)
58
return config ? this.deepCopy(config) : undefined
59
60
61
async saveConfig(imageHash: Hex.Hex, config: Config.Config): Promise<void> {
62
- this.configs.set(imageHash, this.deepCopy(config))
+ this.configs.set(imageHash.toLowerCase() as Hex.Hex, this.deepCopy(config))
63
64
65
async loadCounterfactualWallet(
0 commit comments