Skip to content
Snippets Groups Projects
Unverified Commit da29a7c2 authored by Wolfgang Welz's avatar Wolfgang Welz Committed by GitHub
Browse files

chore: remove unused packages (#99)

parent 2cc68e1b
No related branches found
No related tags found
No related merge requests found
@echo off
SETLOCAL EnableDelayedExpansion
Set PEERING_PORT=14000
cd entryNode
start /b "" "go_build_github_com_iotaledger_goshimmer.exe" -autopeering-port %PEERING_PORT% -autopeering-entry-nodes e83c2e1f0ba552cbb6d08d819b7b2196332f8423@127.0.0.1:14000 -node-log-level 4 -node-disable-plugins statusscreen
cd ..
\ No newline at end of file
@echo off
SETLOCAL EnableDelayedExpansion
Set PEERING_PORT=14000
mkdir testNodes
cd testNodes
FOR /L %%i IN (1,1,100) DO (
set /A PEERING_PORT=PEERING_PORT+1
del /Q /S node%%i
mkdir node%%i
copy ..\entryNode\go_build_github_com_iotaledger_goshimmer.exe node%%i\goshimmer.exe
cd node%%i
start /b "" "goshimmer.exe" -autopeering-port !PEERING_PORT! -autopeering-entry-nodes e83c2e1f0ba552cbb6d08d819b7b2196332f8423@127.0.0.1:14000 -node-log-level 4 -node-disable-plugins statusscreen
cd ..
)
cd ..
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment