*save no longer needs file extension

This commit is contained in:
Derrick Hammer 2022-12-21 16:12:33 -05:00
parent 13522532a3
commit af7e441c7c
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ import * as bip39 from "@scure/bip39";
import { wordlist } from "@scure/bip39/wordlists/english";
if (!config.str("seed")) {
config.save("account.json", {
config.save("account", {
seed: bip39.generateMnemonic(wordlist),
});
}