remove unused imports in slashing prtection (#2436)
This commit is contained in:
parent
21b2367bf1
commit
97850741a0
|
@ -11,7 +11,7 @@ import
|
||||||
# Status
|
# Status
|
||||||
eth/db/[kvstore, kvstore_sqlite3],
|
eth/db/[kvstore, kvstore_sqlite3],
|
||||||
chronicles,
|
chronicles,
|
||||||
nimcrypto/[hash, utils],
|
nimcrypto/hash,
|
||||||
serialization,
|
serialization,
|
||||||
json_serialization,
|
json_serialization,
|
||||||
# Internal
|
# Internal
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# Nimbus
|
# Nimbus
|
||||||
# Copyright (c) 2018 Status Research & Development GmbH
|
# Copyright (c) 2018-2021 Status Research & Development GmbH
|
||||||
# Licensed under either of
|
# Licensed under either of
|
||||||
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or https://www.apache.org/licenses/LICENSE-2.0)
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or https://www.apache.org/licenses/LICENSE-2.0)
|
||||||
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or https://opensource.org/licenses/MIT)
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or https://opensource.org/licenses/MIT)
|
||||||
|
@ -19,8 +19,7 @@ import
|
||||||
# Internal
|
# Internal
|
||||||
../../beacon_chain/validators/[
|
../../beacon_chain/validators/[
|
||||||
slashing_protection,
|
slashing_protection,
|
||||||
slashing_protection_v1,
|
slashing_protection_v1
|
||||||
slashing_protection_v2
|
|
||||||
],
|
],
|
||||||
../../beacon_chain/spec/[datatypes, digest, crypto, presets],
|
../../beacon_chain/spec/[datatypes, digest, crypto, presets],
|
||||||
# Test utilies
|
# Test utilies
|
||||||
|
|
Loading…
Reference in New Issue