Fix wrong scope of var

pull/293/head
Vuong 3 years ago
parent 60de82342d
commit 384dd4b8ee
No known key found for this signature in database
GPG Key ID: 6180BBA961D18ED4

@ -54,7 +54,7 @@ func (ct *Cointop) ParseKeys(s string) (interface{}, tcell.ModMask) {
s = strings.TrimSpace(s)
keyName := keyMap(s)
if len(s) > 1 {
keyName := strings.Replace(s, "+", "-", -1)
keyName = strings.Replace(s, "+", "-", -1)
split := strings.Split(keyName, "-")
if len(split) > 1 {
@ -98,7 +98,7 @@ func (ct *Cointop) ParseKeys(s string) (interface{}, tcell.ModMask) {
}
if key == nil {
log.Debugf("Could not map key descriptio '%s' to key", s)
log.Debugf("Could not map key '%s' to key", s)
}
return key, mod
}

Loading…
Cancel
Save