Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
goshimmer
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
iota-imt
goshimmer
Commits
683d261f
Commit
683d261f
authored
5 years ago
by
Hans Moog
Browse files
Options
Downloads
Plain Diff
Merge branch 'develop' into develop.mergeBinary
parents
d1fc76a8
7f238124
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
CHANGELOG.md
+13
-0
13 additions, 0 deletions
CHANGELOG.md
main.go
+4
-1
4 additions, 1 deletion
main.go
plugins/cli/plugin.go
+1
-5
1 addition, 5 deletions
plugins/cli/plugin.go
with
18 additions
and
6 deletions
CHANGELOG.md
+
13
−
0
View file @
683d261f
# v0.1.2 - 2020-02-24
*
Adds
`--version`
flag to retrieve the GoShimmer version
*
Adds the version and commit hash to the remote log logging
*
Replaces the autopeering module with the one from hive.go
*
Changed the pprof listen port to
`6061`
to avoid conflict with Hornet
*
Fixes
`invalid stored peer`
messages
*
Fixes masternodes getting removed if they were offline
*
Fixes
`-c`
and
`-d`
to define config file/dir
*
Fixes drop messages about full queues appearing too many times
*
Fixes crash due to incopatible transaction size
*
Changed the salt lifetime to 2 hours from 30 minutes
# v0.1.1 - 2020-02-07
This release contains a series of fixes:
...
...
This diff is collapsed.
Click to expand it.
main.go
+
4
−
1
View file @
683d261f
package
main
import
(
"net/http"
_
"net/http/pprof"
"github.com/iotaledger/goshimmer/plugins/analysis"
...
...
@@ -26,7 +27,9 @@ import (
)
func
main
()
{
//go http.ListenAndServe("localhost:6061", nil) // pprof Server for Debbuging Mutexes
cli
.
PrintVersion
()
go
http
.
ListenAndServe
(
"localhost:6061"
,
nil
)
// pprof Server for Debbuging Mutexes
node
.
Run
(
node
.
Plugins
(
...
...
This diff is collapsed.
Click to expand it.
plugins/cli/plugin.go
+
1
−
5
View file @
683d261f
...
...
@@ -6,7 +6,7 @@ import (
flag
"github.com/spf13/pflag"
)
var
PLUGIN
=
node
.
NewPlugin
(
"CLI"
,
node
.
Enabled
,
run
)
var
PLUGIN
=
node
.
NewPlugin
(
"CLI"
,
node
.
Enabled
)
func
onAddPlugin
(
name
string
,
status
int
)
{
AddPluginStatus
(
node
.
GetPluginIdentifier
(
name
),
status
)
...
...
@@ -21,7 +21,3 @@ func init() {
flag
.
Usage
=
printUsage
}
func
run
(
ctx
*
node
.
Plugin
)
{
// do nothing; everything is handled in the init method
}
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