cleanup: remove nimbus/rpc/key_storage.nim

this is an unused file
This commit is contained in:
jangko 2021-10-28 10:32:41 +07:00
parent df85cd779b
commit e1abf81cac
No known key found for this signature in database
GPG Key ID: 31702AE10541E6B9
1 changed files with 0 additions and 20 deletions

View File

@ -1,20 +0,0 @@
#
# Nimbus
# (c) Copyright 2019
# Status Research & Development GmbH
#
# Licensed under either of
# Apache License, version 2.0, (LICENSE-APACHEv2)
# MIT license (LICENSE-MIT)
import tables, eth/keys
type
KeyStorage* = ref object
asymKeys*: Table[string, KeyPair]
KeyGenerationError* = object of CatchableError
proc newKeyStorage*(): KeyStorage =
new(result)
result.asymKeys = initTable[string, KeyPair]()