We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 322c02f commit 0a8338dCopy full SHA for 0a8338d
src/server/start_full_node.py
@@ -2,6 +2,7 @@
2
import logging
3
import logging.config
4
import signal
5
+import miniupnpc
6
7
import aiosqlite
8
@@ -61,7 +62,6 @@ async def async_main():
61
62
if config["enable_upnp"]:
63
log.info(f"Attempting to enable UPnP (open up port {config['port']})")
64
try:
- #miniupnpc = pip_import("miniupnpc", "miniupnpc==2.1") Causing problems on windows
65
upnp = miniupnpc.UPnP()
66
upnp.discoverdelay = 5
67
upnp.discover()
0 commit comments