refactored netcontroller and split module
This commit is contained in:
parent
6b0c88aff9
commit
bb87bc192e
10 changed files with 171 additions and 113 deletions
|
@ -9,4 +9,9 @@ BlockHash = NewType('BlockHash', str)
|
|||
|
||||
OnboardingConfig = NewType('OnboardingConfig', str)
|
||||
|
||||
# JSON serializable string. e.g. no raw bytes
|
||||
JSONSerializable = NewType('JSONSerializable', str)
|
||||
|
||||
# Return value of some functions or methods, denoting operation success
|
||||
# Do not use for new code
|
||||
BooleanSuccessState = NewType('BooleanSuccessState', bool)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue