mirror of
https://github.com/status-im/nimbus-eth1.git
synced 2025-02-05 00:36:45 +00:00
046c97f18b
* Activate wire protocol eth/66 and: Disentangle protocol_eth66.nim from import sections why: Importing the protocol_eth66 module is not necessary. There is no need to know too many details of the underlying wire protocol. All that is needed will be exported by blockchain_sync.nim. * fixes, and rebase * Update nimbus/p2p/blockchain_sync.nim Co-authored-by: Kim De Mey <kim.demey@gmail.com> * Fixes and rebase Co-authored-by: Kim De Mey <kim.demey@gmail.com>
13 lines
491 B
Nim
13 lines
491 B
Nim
# Nimbus
|
|
# Copyright (c) 2018-2021 Status Research & Development GmbH
|
|
# Licensed and distributed under either of
|
|
# * MIT license (license terms in the root directory or at
|
|
# https://opensource.org/licenses/MIT).
|
|
# * Apache v2 license (license terms in the root directory or at
|
|
# https://www.apache.org/licenses/LICENSE-2.0).
|
|
# at your option. This file may not be copied, modified, or distributed
|
|
# except according to those terms.
|
|
|
|
import ./protocol_eth66
|
|
export protocol_eth66
|