mirror of https://github.com/status-im/nim-eth.git
Add/update bunch of license headers
This commit is contained in:
parent
755729c6a1
commit
81f0a56ebd
15
eth/p2p.nim
15
eth/p2p.nim
|
@ -1,12 +1,9 @@
|
||||||
#
|
# nim-eth
|
||||||
# Ethereum P2P
|
# Copyright (c) 2018-2021 Status Research & Development GmbH
|
||||||
# (c) Copyright 2018
|
# Licensed and distributed under either of
|
||||||
# Status Research & Development GmbH
|
# * 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).
|
||||||
# Licensed under either of
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
||||||
# Apache License, version 2.0, (LICENSE-APACHEv2)
|
|
||||||
# MIT license (LICENSE-MIT)
|
|
||||||
#
|
|
||||||
|
|
||||||
import
|
import
|
||||||
std/[tables, algorithm, random],
|
std/[tables, algorithm, random],
|
||||||
|
|
|
@ -1,3 +1,10 @@
|
||||||
|
# nim-eth
|
||||||
|
# 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
|
import
|
||||||
std/[sets, options, random, hashes],
|
std/[sets, options, random, hashes],
|
||||||
chronos, chronicles,
|
chronos, chronicles,
|
||||||
|
|
|
@ -1,3 +1,10 @@
|
||||||
|
# nim-eth
|
||||||
|
# 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
|
import
|
||||||
eth/common/[eth_types, state_accessors]
|
eth/common/[eth_types, state_accessors]
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,10 @@
|
||||||
|
# nim-eth
|
||||||
|
# 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.
|
||||||
|
|
||||||
# PeerPool attempts to keep connections to at least min_peers
|
# PeerPool attempts to keep connections to at least min_peers
|
||||||
# on the given network.
|
# on the given network.
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,10 @@
|
||||||
|
# nim-eth
|
||||||
|
# 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
|
import
|
||||||
std/[deques, tables],
|
std/[deques, tables],
|
||||||
bearssl, chronos,
|
bearssl, chronos,
|
||||||
|
|
|
@ -1,3 +1,10 @@
|
||||||
|
# nim-eth
|
||||||
|
# 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
|
import
|
||||||
std/[tables, algorithm, deques, hashes, options, typetraits],
|
std/[tables, algorithm, deques, hashes, options, typetraits],
|
||||||
stew/shims/macros, chronicles, nimcrypto, chronos,
|
stew/shims/macros, chronicles, nimcrypto, chronos,
|
||||||
|
|
|
@ -1,12 +1,9 @@
|
||||||
#
|
# nim-eth - Whisper
|
||||||
# Whisper
|
# Copyright (c) 2018-2021 Status Research & Development GmbH
|
||||||
# (c) Copyright 2018-2019
|
# Licensed and distributed under either of
|
||||||
# Status Research & Development GmbH
|
# * 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).
|
||||||
# Licensed under either of
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
||||||
# Apache License, version 2.0, (LICENSE-APACHEv2)
|
|
||||||
# MIT license (LICENSE-MIT)
|
|
||||||
#
|
|
||||||
|
|
||||||
import
|
import
|
||||||
std/[algorithm, bitops, math, options, tables, times, hashes],
|
std/[algorithm, bitops, math, options, tables, times, hashes],
|
||||||
|
|
|
@ -1,12 +1,9 @@
|
||||||
#
|
# nim-eth - Whisper
|
||||||
# Whisper
|
# Copyright (c) 2018-2021 Status Research & Development GmbH
|
||||||
# (c) Copyright 2018-2019
|
# Licensed and distributed under either of
|
||||||
# Status Research & Development GmbH
|
# * 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).
|
||||||
# Licensed under either of
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
||||||
# Apache License, version 2.0, (LICENSE-APACHEv2)
|
|
||||||
# MIT license (LICENSE-MIT)
|
|
||||||
#
|
|
||||||
|
|
||||||
## Whisper
|
## Whisper
|
||||||
## *******
|
## *******
|
||||||
|
|
Loading…
Reference in New Issue