diff options
author | Bas van Kervel <bas@ethdev.com> | 2015-08-28 18:49:41 +0800 |
---|---|---|
committer | Bas van Kervel <bas@ethdev.com> | 2015-08-28 18:49:41 +0800 |
commit | 39e956060095801b11766c6788dd5b7a5d0589b6 (patch) | |
tree | 2f263eccdc260179ac5dda709d935ee2a7eac6d2 /rpc/api/personal_args.go | |
parent | 6ec13e7e2bab1ebdb580819a48629055bbbb5fb3 (diff) | |
download | go-tangerine-39e956060095801b11766c6788dd5b7a5d0589b6.tar.gz go-tangerine-39e956060095801b11766c6788dd5b7a5d0589b6.tar.zst go-tangerine-39e956060095801b11766c6788dd5b7a5d0589b6.zip |
rpc/api allow empty password
Diffstat (limited to 'rpc/api/personal_args.go')
-rw-r--r-- | rpc/api/personal_args.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rpc/api/personal_args.go b/rpc/api/personal_args.go index 89419029b..73dc6285e 100644 --- a/rpc/api/personal_args.go +++ b/rpc/api/personal_args.go @@ -46,7 +46,7 @@ func (args *NewAccountArgs) UnmarshalJSON(b []byte) (err error) { type UnlockAccountArgs struct { Address string - Passphrase string + Passphrase *string Duration int } @@ -70,7 +70,7 @@ func (args *UnlockAccountArgs) UnmarshalJSON(b []byte) (err error) { if len(obj) >= 2 && obj[1] != nil { if passphrasestr, ok := obj[1].(string); ok { - args.Passphrase = passphrasestr + args.Passphrase = &passphrasestr } else { return shared.NewInvalidTypeError("passphrase", "not a string") } |