Remove inactive module files

This commit is contained in:
lash 2022-03-14 21:24:50 +00:00
parent 25ac641476
commit a0914520d8
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
10 changed files with 8 additions and 7 deletions

View File

@ -20,17 +20,17 @@ classifiers =
# Topic :: Blockchain :: EVM
license = GPL3
licence_files =
LICENSE.txt
LICENSE
[options]
python_requires = >= 3.6
include_package_data = True
packages =
chaind
chaind.sql
chaind.runnable
# chaind.sql
# chaind.runnable
chainqueue.adapters
[options.entry_points]
console_scripts =
chaind-list = chaind.runnable.list:main
#[options.entry_points]
#console_scripts =
# chaind-list = chaind.runnable.list:main

View File

@ -62,7 +62,8 @@ class TestChaindFs(unittest.TestCase):
self.chain_spec = ChainSpec('foo', 'bar', 42, 'baz')
self.path = tempfile.mkdtemp()
self.dispatcher = MockDispatcher()
self.adapter = ChaindFsAdapter(self.chain_spec, self.path, MockCacheAdapter().deserialize, self.dispatcher)
deserializer = MockCacheAdapter().deserialize
self.adapter = ChaindFsAdapter(self.chain_spec, self.path, deserializer, self.dispatcher)
def tearDown(self):