mirror of
https://github.com/logos-messaging/logos-messaging-legacy.git
synced 2026-01-04 06:53:07 +00:00
23 lines
529 B
Nim
23 lines
529 B
Nim
#
|
|
# Waku - Whisper Bridge
|
|
# (c) Copyright 2018-2021
|
|
# Status Research & Development GmbH
|
|
#
|
|
# Licensed under either of
|
|
# Apache License, version 2.0, (LICENSE-APACHEv2)
|
|
# MIT license (LICENSE-MIT)
|
|
#
|
|
|
|
when (NimMajor, NimMinor) < (1, 4):
|
|
{.push raises: [Defect].}
|
|
else:
|
|
{.push raises: [].}
|
|
|
|
import
|
|
eth/p2p,
|
|
../whisper/whisper_protocol,
|
|
./waku_protocol
|
|
|
|
proc shareMessageQueue*(node: EthereumNode) =
|
|
node.protocolState(Waku).queue = node.protocolState(Whisper).queue
|