made lan port identification faster

This commit is contained in:
Kevin 2020-06-17 00:00:52 -05:00
parent 529da22cc4
commit 1e76990d1e
4 changed files with 32 additions and 57 deletions

View file

@ -3,6 +3,8 @@ from typing import NewType
UserID = NewType('UserID', str)
UserIDSecretKey = NewType('UserIDSecretKey', str)
LANIP = NewType('LANIP', 'str')
DeterministicKeyPassphrase = NewType('DeterministicKeyPassphrase', str)
BlockHash = NewType('BlockHash', str)