Skip to content

Commit 322c02f

Browse files
committed
Remove "pip install miniupnpc" from server start. 1st run fails on win64
1 parent 35f0c92 commit 322c02f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/server/start_full_node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ async def async_main():
6161
if config["enable_upnp"]:
6262
log.info(f"Attempting to enable UPnP (open up port {config['port']})")
6363
try:
64-
miniupnpc = pip_import("miniupnpc", "miniupnpc==2.1")
64+
#miniupnpc = pip_import("miniupnpc", "miniupnpc==2.1") Causing problems on windows
6565
upnp = miniupnpc.UPnP()
6666
upnp.discoverdelay = 5
6767
upnp.discover()

0 commit comments

Comments
 (0)