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
|
# Topic :: Blockchain :: EVM
|
||||||
license = GPL3
|
license = GPL3
|
||||||
licence_files =
|
licence_files =
|
||||||
LICENSE.txt
|
LICENSE
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >= 3.6
|
python_requires = >= 3.6
|
||||||
include_package_data = True
|
include_package_data = True
|
||||||
packages =
|
packages =
|
||||||
chaind
|
chaind
|
||||||
chaind.sql
|
# chaind.sql
|
||||||
chaind.runnable
|
# chaind.runnable
|
||||||
chainqueue.adapters
|
chainqueue.adapters
|
||||||
|
|
||||||
[options.entry_points]
|
#[options.entry_points]
|
||||||
console_scripts =
|
#console_scripts =
|
||||||
chaind-list = chaind.runnable.list:main
|
# chaind-list = chaind.runnable.list:main
|
||||||
|
@ -62,7 +62,8 @@ class TestChaindFs(unittest.TestCase):
|
|||||||
self.chain_spec = ChainSpec('foo', 'bar', 42, 'baz')
|
self.chain_spec = ChainSpec('foo', 'bar', 42, 'baz')
|
||||||
self.path = tempfile.mkdtemp()
|
self.path = tempfile.mkdtemp()
|
||||||
self.dispatcher = MockDispatcher()
|
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):
|
def tearDown(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user