fix: Added support for intialisation of CurrentUserStatus to Automatic after profile creation (#2798)
This commit is contained in:
parent
25a80cf20b
commit
ef21440e32
|
@ -108,10 +108,11 @@ INSERT INTO settings (
|
|||
public_key,
|
||||
signing_phrase,
|
||||
wallet_root_address,
|
||||
synthetic_id
|
||||
synthetic_id,
|
||||
current_user_status
|
||||
) VALUES (
|
||||
?,?,?,?,?,?,?,?,?,?,?,?,
|
||||
?,?,?,?,?,?,?,?,?,'id')`,
|
||||
?,?,?,?,?,?,?,?,?,'id',?)`,
|
||||
s.Address,
|
||||
s.Currency,
|
||||
s.CurrentNetwork,
|
||||
|
@ -133,6 +134,7 @@ INSERT INTO settings (
|
|||
s.PublicKey,
|
||||
s.SigningPhrase,
|
||||
s.WalletRootAddress,
|
||||
s.CurrentUserStatus,
|
||||
)
|
||||
if err != nil {
|
||||
return err
|
||||
|
|
Loading…
Reference in New Issue