Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
githubsands committed Sep 30, 2018
1 parent 72d0626 commit a6c8b98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rpc/legacyrpc/methods.go
Original file line number Diff line number Diff line change
Expand Up @@ -3461,9 +3461,9 @@ func verifySeed(s *Server, icmd interface{}) (interface{}, error) {
}

// obtain the wallet public key to check agaisnt the wallet derived seed
account := 0
var account uint32 = 0
if cmd.Account != nil {
account = int(cmd.Account)
account = uint32(cmd.Account)
}

// do whats necessary to derive the key from the seed
Expand Down

0 comments on commit a6c8b98

Please sign in to comment.