UUID -> PubKeyEd25519

This commit is contained in:
Jae Kwon
2015-07-15 14:31:03 -07:00
parent fd64547ce7
commit e4c351f5fc
23 changed files with 15 additions and 1217 deletions

View File

@@ -10,8 +10,6 @@ import (
"github.com/tendermint/tendermint/binary"
. "github.com/tendermint/tendermint/common"
"github.com/tendermint/tendermint/types"
"github.com/tendermint/tendermint/Godeps/_workspace/src/code.google.com/p/go-uuid/uuid"
)
type PeerMessage struct {
@@ -85,7 +83,6 @@ func makeSwitchPair(t testing.TB, initSwitch func(*Switch) *Switch) (*Switch, *S
Moniker: "switch1",
ChainID: "testing",
Version: "123.123.123",
UUID: uuid.New(),
})
s1.SetNodePrivKey(s1PrivKey)
s2 := initSwitch(NewSwitch())
@@ -94,7 +91,6 @@ func makeSwitchPair(t testing.TB, initSwitch func(*Switch) *Switch) (*Switch, *S
Moniker: "switch2",
ChainID: "testing",
Version: "123.123.123",
UUID: uuid.New(),
})
s2.SetNodePrivKey(s2PrivKey)