chainqueue

Blockchain transaction queue control
Info | Log | Files | Refs | LICENSE

test_helo.py (211B)


      1 # standard imports
      2 import unittest
      3 
      4 # local imports
      5 from tests.chainqueue_base import TestBase
      6 
      7 
      8 class TestHelo(TestBase):
      9 
     10     def test_helo(self):
     11         pass
     12 
     13 
     14 if __name__ == '__main__':
     15     unittest.main()