aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/api/personal.go
diff options
context:
space:
mode:
Diffstat (limited to 'rpc/api/personal.go')
-rw-r--r--rpc/api/personal.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/rpc/api/personal.go b/rpc/api/personal.go
index 1b0dea330..1fb412612 100644
--- a/rpc/api/personal.go
+++ b/rpc/api/personal.go
@@ -110,7 +110,7 @@ func (self *personalApi) UnlockAccount(req *shared.Request) (interface{}, error)
return nil, shared.NewDecodeParamError(err.Error())
}
- if len(args.Passphrase) == 0 {
+ if args.Passphrase == nil {
fe := self.xeth.Frontend()
if fe == nil {
return false, fmt.Errorf("No password provided")
@@ -121,6 +121,6 @@ func (self *personalApi) UnlockAccount(req *shared.Request) (interface{}, error)
am := self.ethereum.AccountManager()
addr := common.HexToAddress(args.Address)
- err := am.TimedUnlock(addr, args.Passphrase, time.Duration(args.Duration)*time.Second)
+ err := am.TimedUnlock(addr, *args.Passphrase, time.Duration(args.Duration)*time.Second)
return err == nil, err
}