rpc/api allow empty password

This commit is contained in:
Bas van Kervel
2015-08-28 12:49:41 +02:00
parent 6ec13e7e2b
commit 39e9560600
2 changed files with 4 additions and 4 deletions

View File

@ -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")
}