diff --git a/src/Core/Storage/WalletStore.cs b/src/Core/Storage/WalletStore.cs index 1264e1b..b2d7aef 100644 --- a/src/Core/Storage/WalletStore.cs +++ b/src/Core/Storage/WalletStore.cs @@ -25,6 +25,8 @@ public static class WalletStore return WalletDocument.FromJson(content); } + /// Null saves in plaintext. Only omit when the user has + /// explicitly opted out of encryption (UI must show a clear warning). public static void Save(WalletDocument doc, string path, string? password = null) { var content = doc.ToJson();