We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7425f10 commit b667184Copy full SHA for b667184
beacon_chain/consensus_object_pools/blob_quarantine.nim
@@ -766,8 +766,7 @@ func getMissingSidecarIndices*(
766
blockRoot: Eth2Digest
767
): seq[ColumnIndex] =
768
var res: seq[ColumnIndex]
769
- let map = quarantine.getMissingColumnsMap(blockRoot)
770
- for item in map:
+ for item in quarantine.getMissingColumnsMap(blockRoot):
771
res.add(item)
772
res
773
beacon_chain/sync/sync_queue.nim
@@ -283,7 +283,7 @@ func getShortMap*[T](
283
): string =
284
let
285
alphabet =
286
- "123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ+/#"
+ "123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ+/#-"
287
unknown = "…"
288
289
var
0 commit comments