fix: key needs to be 33 bytes
This commit is contained in:
parent
e1709a7910
commit
f34f009f17
|
@ -247,7 +247,7 @@ func (h *HttpHandler) AccountRegister(jc jape.Context) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(decodedKey) != 32 {
|
if len(decodedKey) != 33 {
|
||||||
errored(err)
|
errored(err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue