From 4a25bec2b5f3685bac4eb7c830e7049c8fcca934 Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Sun, 24 May 2020 01:54:41 +0300 Subject: [PATCH] Quick and dirty fix for the inspector build --- beacon_chain/inspector.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beacon_chain/inspector.nim b/beacon_chain/inspector.nim index 401bf1701..8b2e66a16 100644 --- a/beacon_chain/inspector.nim +++ b/beacon_chain/inspector.nim @@ -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"