Update eth/p2p/rlpx.nim

Co-authored-by: Kim De Mey <kim.demey@gmail.com>
This commit is contained in:
Jordan Hrycaj 2022-03-25 09:11:15 +00:00 committed by GitHub
parent 1d8a9cf01c
commit 499e542263
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ proc read(rlp: var Rlp; T: type DisconnectionReasonList): T
# Be strict here: The expression `rlp.read(DisconnectionReasonList)`
# accepts lists with at least one item. The array expression wants
# exactly one item.
let a = rlp.read(array[1,DisconnectionReason])
let a = rlp.read(array[1, DisconnectionReason])
return DisconnectionReasonList(value: a[0])
# Also accepted: a single byte reason code. Is is typically used