Skip to content
Snippets Groups Projects
Commit 683d261f authored by Hans Moog's avatar Hans Moog
Browse files

Merge branch 'develop' into develop.mergeBinary

parents d1fc76a8 7f238124
No related branches found
No related tags found
No related merge requests found
# 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:
......
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(
......
......@@ -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
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment