update to v0.12.3 message ID for Spadina launch (#1762)

* update to v0.12.3 message ID for Spadina launch

* remove base64 import
This commit is contained in:
tersec 2020-09-28 15:07:10 +00:00 committed by GitHub
parent b72ebbc168
commit a2270a5f27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ import
std/options as stdOptions,
# Status libs
stew/[varints, base58, base64, endians2, results, byteutils], bearssl,
stew/[varints, base58, endians2, results, byteutils], bearssl,
stew/shims/net as stewNet,
stew/shims/[macros, tables],
faststreams/[inputs, outputs, buffers], snappy, snappy/framing,
@ -1218,7 +1218,7 @@ proc getPersistentNetKeys*(
func gossipId(data: openArray[byte]): string =
# https://github.com/ethereum/eth2.0-specs/blob/v0.12.3/specs/phase0/p2p-interface.md#topics-and-messages
base64.encode(Base64Url, sha256.digest(data).data)
string.fromBytes(sha256.digest(data).data.toOpenArray(0, 7))
func msgIdProvider(m: messages.Message): string =
gossipId(m.data)