drop useless import, use redux v2

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2019-06-28 16:27:16 -04:00 committed by Jakub
parent b328dc3655
commit d99f664ede
4 changed files with 10 additions and 4 deletions

1
go.mod
View File

@ -3,6 +3,7 @@ module github.com/status-im/status-monitor
require (
github.com/aristanetworks/goarista v0.0.0-20190607111240-52c2a7864a08 // indirect
github.com/dannypsnl/redux v1.5.4
github.com/dannypsnl/redux/v2 v2.2.2
github.com/deckarep/golang-set v1.7.1 // indirect
github.com/ethereum/go-ethereum v1.8.27
github.com/go-stack/stack v1.8.0 // indirect

6
go.sum
View File

@ -2,6 +2,9 @@ github.com/aristanetworks/goarista v0.0.0-20190607111240-52c2a7864a08 h1:UxoB3EY
github.com/aristanetworks/goarista v0.0.0-20190607111240-52c2a7864a08/go.mod h1:D/tb0zPVXnP7fmsLZjtdUhSsumbK/ij54UXjjVgMGxQ=
github.com/dannypsnl/redux v1.5.4 h1:74ZXbY6DFw5JzhvzG2h3nCTApwUBftNT+FJGrkQUI40=
github.com/dannypsnl/redux v1.5.4/go.mod h1:2pNAfdPxy2jjJAzZsfamTY5g57b+hpMhWVPoslIRyks=
github.com/dannypsnl/redux/v2 v2.2.2 h1:utdozsk/Nb4ljb4Vr8wOdIYbDEAdn7vLpSEF2YN7nBA=
github.com/dannypsnl/redux/v2 v2.2.2/go.mod h1:wjrvviOHytvanXghtpEm5vJYKRQE6iII9tnHkvUZgOM=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/deckarep/golang-set v1.7.1 h1:SCQV0S6gTtp6itiFrTqI+pfmJ4LN85S1YzhDf9rTHJQ=
github.com/deckarep/golang-set v1.7.1/go.mod h1:93vsz/8Wt4joVM7c2AVqh+YRMiUSc14yDtF28KmMOgQ=
github.com/ethereum/go-ethereum v1.8.27 h1:d+gkiLaBDk5fn3Pe/xNVaMrB/ozI+AUB2IlVBp29IrY=
@ -14,8 +17,11 @@ github.com/mattn/go-runewidth v0.0.4 h1:2BvfKmzob6Bmd4YsL0zygOqfdFnK7GR4QL06Do4/
github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU=
github.com/nsf/termbox-go v0.0.0-20190325093121-288510b9734e h1:Vbib8wJAaMEF9jusI/kMSYMr/LtRzM7+F9MJgt/nH8k=
github.com/nsf/termbox-go v0.0.0-20190325093121-288510b9734e/go.mod h1:IuKpRQcYE1Tfu+oAQqaLisqDeXgjyyltCfsaoYN18NQ=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/rs/cors v1.6.0 h1:G9tHG9lebljV9mfp9SNPDL36nCDxmo3zTlAf1YgvzmI=
github.com/rs/cors v1.6.0/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
golang.org/x/net v0.0.0-20190613194153-d28f0bde5980 h1:dfGZHvZk057jK2MCeWus/TowKpJ8y4AmooUzdBSR9GU=
golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=

View File

@ -1,7 +1,7 @@
package main
import (
"github.com/dannypsnl/redux/rematch"
"github.com/dannypsnl/redux/v2/rematch"
)
type PeersState struct {

View File

@ -3,9 +3,8 @@ package main
import (
"log"
_ "github.com/dannypsnl/redux"
"github.com/dannypsnl/redux/rematch"
"github.com/dannypsnl/redux/store"
"github.com/dannypsnl/redux/v2/rematch"
"github.com/dannypsnl/redux/v2/store"
)
// This might need renaming, since it also contains the Client.