Skip to content
Snippets Groups Projects
Commit 315ddac2 authored by capossele's avatar capossele
Browse files

Merge branch 'master' into feat/gossip-integration

parents f04dda89 8c041823
Branches
Tags
No related merge requests found
# we need to use alpine to build since cgo is required
FROM golang:1.12-alpine AS build
FROM golang:1.13-alpine AS build
RUN apk add --no-cache git gcc g++
# Set the current Working Directory inside the container
......
......@@ -15,4 +15,4 @@ services:
- "14666:14666/tcp"
- "14626:14626/udp"
- "14626:14626/tcp"
command: "-node-disable-plugins statusscreen"
command: "--node.disablePlugins statusscreen"
package database
import (
"github.com/iotaledger/hive.go/parameter"
"os"
"sync"
"github.com/dgraph-io/badger"
"github.com/dgraph-io/badger/options"
"github.com/iotaledger/hive.go/parameter"
"github.com/pkg/errors"
)
......
......@@ -4,13 +4,12 @@ import (
"net/http"
"time"
"golang.org/x/net/context"
"github.com/iotaledger/goshimmer/plugins/metrics"
"github.com/iotaledger/hive.go/daemon"
"github.com/iotaledger/hive.go/events"
"github.com/iotaledger/hive.go/logger"
"github.com/iotaledger/hive.go/node"
"golang.org/x/net/context"
)
var server *http.Server
......
package statusscreen
import (
"github.com/iotaledger/hive.go/logger"
"time"
"github.com/iotaledger/hive.go/logger"
......
......@@ -14,7 +14,6 @@ import (
"github.com/iotaledger/hive.go/events"
"github.com/iotaledger/hive.go/logger"
"github.com/iotaledger/hive.go/node"
"github.com/labstack/echo"
)
......
......@@ -2,11 +2,11 @@ package webapi
import (
"context"
"github.com/iotaledger/hive.go/logger"
"time"
"github.com/iotaledger/hive.go/daemon"
"github.com/iotaledger/hive.go/events"
"github.com/iotaledger/hive.go/logger"
"github.com/iotaledger/hive.go/node"
"github.com/labstack/echo"
)
......
package zeromq
import (
"github.com/iotaledger/hive.go/logger"
"github.com/iotaledger/hive.go/parameter"
"strconv"
"strings"
"time"
......@@ -11,7 +9,9 @@ import (
"github.com/iotaledger/goshimmer/plugins/tangle"
"github.com/iotaledger/hive.go/daemon"
"github.com/iotaledger/hive.go/events"
"github.com/iotaledger/hive.go/logger"
"github.com/iotaledger/hive.go/node"
"github.com/iotaledger/hive.go/parameter"
)
// zeromq logging is disabled by default
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment