Quick and dirty fix for the inspector build
This commit is contained in:
parent
833f19e942
commit
4a25bec2b5
|
@ -460,8 +460,8 @@ proc logEnrAddress(address: string) =
|
|||
eth2next_fork_epoch = "None"
|
||||
|
||||
if attnData.isSome():
|
||||
var attn = SSZ.decode(attnData.get(), seq[byte])
|
||||
attnets = bu.toHex(attn)
|
||||
var attn = SSZ.decode(attnData.get(), List[byte, 9999999]) # TODO: what's the limit on that list?
|
||||
attnets = bu.toHex(attn.asSeq)
|
||||
else:
|
||||
attnets = "None"
|
||||
|
||||
|
|
Loading…
Reference in New Issue