Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Goshimmer_without_tipselection
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
COLLET Ismael
Goshimmer_without_tipselection
Commits
d2b5536b
Unverified
Commit
d2b5536b
authored
4 years ago
by
Wolfgang Welz
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Chore: Remove unused files (#588)
parent
b8e88c5b
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
issues.txt
+0
-0
0 additions, 0 deletions
issues.txt
out.png
+0
-0
0 additions, 0 deletions
out.png
runNetwork.sh
+0
-32
0 additions, 32 deletions
runNetwork.sh
with
0 additions
and
32 deletions
issues.txt
deleted
100644 → 0
+
0
−
0
View file @
b8e88c5b
This diff is collapsed.
Click to expand it.
out.png
deleted
100644 → 0
+
0
−
0
View file @
b8e88c5b
290 KiB
This diff is collapsed.
Click to expand it.
runNetwork.sh
deleted
100755 → 0
+
0
−
32
View file @
b8e88c5b
#!/bin/bash
if
[
-z
"
$1
"
]
;
then
echo
"Usage:
`
basename
$0
`
number_of_nodes"
exit
0
fi
re
=
'^[0-9]+$'
if
!
[[
$1
=
~
$re
]]
;
then
echo
"Error: Number of nodes given is not a number"
>
&2
;
exit
1
fi
PEERING_PORT
=
14630
GOSSIP_PORT
=
15670
if
[
-d
testNodes
]
;
then
rm
-r
testNodes
fi
mkdir
testNodes
cd
testNodes
for
i
in
`
seq
1
$1
`
;
do
PEERING_PORT
=
$((
PEERING_PORT+1
))
GOSSIP_PORT
=
$((
GOSSIP_PORT+1
))
mkdir
node_
$i
mkdir
node_
$i
/logs
cp
../goshimmer node_
$i
/
cd
node_
$i
./goshimmer
--autopeering
.port
$PEERING_PORT
--gossip
.port
$GOSSIP_PORT
--autopeering
.address 127.0.0.1
--autopeering
.entryNodes
2TwlC5mtYVrCHNKG8zkFWmEUlL0pJPS1DOOC2U4yjwo
=
@127.0.0.1:14626
--node
.LogLevel 4
--node
.disablePlugins statusscreen
--analysis
.serverAddress 127.0.0.1:188 &
cd
..
done
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment