Remove inactive module files
This commit is contained in:
parent
25ac641476
commit
a0914520d8
12
setup.cfg
12
setup.cfg
@ -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
|
||||
|
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user