mirror of
https://github.com/markqvist/NomadNet.git
synced 2025-12-17 23:04:24 +01:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
be061b1d3a | ||
|
|
b73549179e | ||
|
|
0156bad7fa | ||
|
|
5c3d47fbd2 |
@@ -100,9 +100,7 @@ You can help support the continued development of open, free and private communi
|
|||||||
|
|
||||||
- Monero:
|
- Monero:
|
||||||
```
|
```
|
||||||
84FpY1QbxHcgdseePYNmhTHcrgMX4nFf
|
84FpY1QbxHcgdseePYNmhTHcrgMX4nFfBYtz2GKYToqHVVhJp8Eaw1Z1EedRnKD19b3B8NiLCGVxzKV17UMmmeEsCrPyA5w
|
||||||
BYtz2GKYToqHVVhJp8Eaw1Z1EedRnKD1
|
|
||||||
9b3B8NiLCGVxzKV17UMmmeEsCrPyA5w
|
|
||||||
```
|
```
|
||||||
- Ethereum
|
- Ethereum
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -386,13 +386,13 @@ class NomadNetworkApp:
|
|||||||
if self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_IDLE:
|
if self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_IDLE:
|
||||||
return False
|
return False
|
||||||
elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_PATH_REQUESTED:
|
elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_PATH_REQUESTED:
|
||||||
return True
|
return False
|
||||||
elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_LINK_ESTABLISHING:
|
elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_LINK_ESTABLISHING:
|
||||||
return True
|
return False
|
||||||
elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_LINK_ESTABLISHED:
|
elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_LINK_ESTABLISHED:
|
||||||
return True
|
return False
|
||||||
elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_REQUEST_SENT:
|
elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_REQUEST_SENT:
|
||||||
return True
|
return False
|
||||||
elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_RECEIVING:
|
elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_RECEIVING:
|
||||||
return True
|
return True
|
||||||
elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_RESPONSE_RECEIVED:
|
elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_RESPONSE_RECEIVED:
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
__version__ = "0.2.0"
|
__version__ = "0.2.1"
|
||||||
|
|||||||
@@ -1191,8 +1191,8 @@ class NodeInfo(urwid.WidgetWrap):
|
|||||||
self.t_storage_stats = NodeStorageStats(self.app)
|
self.t_storage_stats = NodeStorageStats(self.app)
|
||||||
NodeInfo.storage_timer = self.t_storage_stats
|
NodeInfo.storage_timer = self.t_storage_stats
|
||||||
else:
|
else:
|
||||||
self.t_active_links = NodeInfo.links_timer
|
self.t_storage_stats = NodeInfo.storage_timer
|
||||||
self.t_active_links.update_stat()
|
self.t_storage_stats.update_stat()
|
||||||
|
|
||||||
if NodeInfo.conns_timer == None:
|
if NodeInfo.conns_timer == None:
|
||||||
self.t_total_connections = NodeTotalConnections(self.app)
|
self.t_total_connections = NodeTotalConnections(self.app)
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -23,6 +23,6 @@ setuptools.setup(
|
|||||||
entry_points= {
|
entry_points= {
|
||||||
'console_scripts': ['nomadnet=nomadnet.nomadnet:main']
|
'console_scripts': ['nomadnet=nomadnet.nomadnet:main']
|
||||||
},
|
},
|
||||||
install_requires=['rns>=0.3.9', 'lxmf>=0.1.7', 'urwid>=2.1.2'],
|
install_requires=['rns>=0.3.11', 'lxmf>=0.1.7', 'urwid>=2.1.2'],
|
||||||
python_requires='>=3.6',
|
python_requires='>=3.6',
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user