-
Notifications
You must be signed in to change notification settings - Fork 161
Conversation
Codecov Report
@@ Coverage Diff @@
## development #552 +/- ##
============================================
Coverage 70.71% 70.71%
============================================
Files 42 42
Lines 2339 2339
============================================
Hits 1654 1654
Misses 541 541
Partials 144 144
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good! could you add a RPC test for this that imports the raw key and unlocks it?
added the test, lmk if it's good @noot |
|
rpc/personal_api.go
Outdated
@@ -128,6 +146,8 @@ func (e *PersonalEthAPI) LockAccount(address common.Address) bool { | |||
return true | |||
} | |||
|
|||
e.logger.Debug("account unlocked", "address", address.String()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this log should be before the return true
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
works for me! just a couple minor comments
I think could do this in a follow up |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
still getting the nonexistent account
error, not sure why since it's using the same keybase now :/ we can open an issue for it
closes #368
closes #414