-
- Downloads
Uniform usage of base58 over base64 and hex (#452)
* Adjust autopeering/neighbors endpoint to display public key in default (base58) * Allow to specify node seed as base58 or base64 + add flag to show seed * Interpret entry node public key as base58 * Adjust integration tests to use base58 instead of base64 * Hex to base58 * Remove flag to print seed * Update hive.go
Showing
- config.default.json 1 addition, 1 deletionconfig.default.json
- go.mod 1 addition, 1 deletiongo.mod
- go.sum 2 additions, 2 deletionsgo.sum
- plugins/autopeering/autopeering.go 2 additions, 2 deletionsplugins/autopeering/autopeering.go
- plugins/autopeering/local/local.go 15 additions, 3 deletionsplugins/autopeering/local/local.go
- plugins/autopeering/local/parameters.go 1 addition, 1 deletionplugins/autopeering/local/parameters.go
- plugins/remotelog/plugin.go 1 addition, 2 deletionsplugins/remotelog/plugin.go
- plugins/webapi/autopeering/plugin.go 19 additions, 25 deletionsplugins/webapi/autopeering/plugin.go
- plugins/webapi/info/plugin.go 1 addition, 1 deletionplugins/webapi/info/plugin.go
- tools/docker-network/docker-compose.yml 1 addition, 1 deletiontools/docker-network/docker-compose.yml
- tools/integration-tests/tester/framework/docker.go 2 additions, 2 deletionstools/integration-tests/tester/framework/docker.go
- tools/integration-tests/tester/framework/drngnetwork.go 2 additions, 2 deletionstools/integration-tests/tester/framework/drngnetwork.go
- tools/integration-tests/tester/framework/framework.go 5 additions, 7 deletionstools/integration-tests/tester/framework/framework.go
- tools/integration-tests/tester/framework/network.go 7 additions, 9 deletionstools/integration-tests/tester/framework/network.go
- tools/integration-tests/tester/go.mod 1 addition, 1 deletiontools/integration-tests/tester/go.mod
- tools/integration-tests/tester/go.sum 2 additions, 2 deletionstools/integration-tests/tester/go.sum
... | @@ -11,7 +11,7 @@ require ( | ... | @@ -11,7 +11,7 @@ require ( |
github.com/gobuffalo/packr/v2 v2.7.1 | github.com/gobuffalo/packr/v2 v2.7.1 | ||
github.com/golang/protobuf v1.3.5 | github.com/golang/protobuf v1.3.5 | ||
github.com/gorilla/websocket v1.4.1 | github.com/gorilla/websocket v1.4.1 | ||
github.com/iotaledger/hive.go v0.0.0-20200525142347-543f24c486b8 | github.com/iotaledger/hive.go v0.0.0-20200608165853-97365812038c | ||
github.com/iotaledger/iota.go v1.0.0-beta.14 | github.com/iotaledger/iota.go v1.0.0-beta.14 | ||
github.com/labstack/echo v3.3.10+incompatible | github.com/labstack/echo v3.3.10+incompatible | ||
github.com/labstack/gommon v0.3.0 | github.com/labstack/gommon v0.3.0 | ||
... | ... |
Please register or sign in to comment