tendermint2

This commit is contained in:
Ethan Buchman 2015-03-30 22:50:27 -07:00
parent e6c352dba0
commit 60f166e823
96 changed files with 260 additions and 260 deletions

View File

@ -5,7 +5,7 @@ import (
"fmt" "fmt"
"io" "io"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
) )
// Signable is an interface for all signable things. // Signable is an interface for all signable things.

View File

@ -2,7 +2,7 @@ package account
import ( import (
"github.com/tendermint/ed25519" "github.com/tendermint/ed25519"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
) )
type PrivAccount struct { type PrivAccount struct {

View File

@ -2,8 +2,8 @@ package account
import ( import (
"github.com/tendermint/ed25519" "github.com/tendermint/ed25519"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
) )
// PrivKey is part of PrivAccount and state.PrivValidator. // PrivKey is part of PrivAccount and state.PrivValidator.

View File

@ -4,8 +4,8 @@ import (
"errors" "errors"
"github.com/tendermint/ed25519" "github.com/tendermint/ed25519"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
) )
// PubKey is part of Account and Validator. // PubKey is part of Account and Validator.

View File

@ -3,8 +3,8 @@ package account
import ( import (
"fmt" "fmt"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
) )
// Signature is a part of Txs and consensus Votes. // Signature is a part of Txs and consensus Votes.

View File

@ -5,8 +5,8 @@ import (
"testing" "testing"
"github.com/tendermint/ed25519" "github.com/tendermint/ed25519"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
) )
func TestSignAndValidate(t *testing.T) { func TestSignAndValidate(t *testing.T) {

View File

@ -5,7 +5,7 @@ import (
"time" "time"
"github.com/sfreiberg/gotwilio" "github.com/sfreiberg/gotwilio"
"github.com/tendermint/tendermint/config" "github.com/tendermint/tendermint2/config"
) )
var lastAlertUnix int64 = 0 var lastAlertUnix int64 = 0

View File

@ -13,7 +13,7 @@ import (
"regexp" "regexp"
"strings" "strings"
"github.com/tendermint/tendermint/config" "github.com/tendermint/tendermint2/config"
) )
// Convenience function // Convenience function

View File

@ -1,7 +1,7 @@
package alert package alert
import ( import (
"github.com/tendermint/tendermint/logger" "github.com/tendermint/tendermint2/logger"
) )
var log = logger.New("module", "alert") var log = logger.New("module", "alert")

View File

@ -2,7 +2,7 @@ package binary
import ( import (
"github.com/tendermint/log15" "github.com/tendermint/log15"
"github.com/tendermint/tendermint/logger" "github.com/tendermint/tendermint2/logger"
) )
var log = logger.New("module", "binary") var log = logger.New("module", "binary")

View File

@ -9,7 +9,7 @@ import (
"sync" "sync"
"time" "time"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
) )
type TypeInfo struct { type TypeInfo struct {

View File

@ -1,7 +1,7 @@
package blockchain package blockchain
import ( import (
"github.com/tendermint/tendermint/logger" "github.com/tendermint/tendermint2/logger"
) )
var log = logger.New("module", "blockchain") var log = logger.New("module", "blockchain")

View File

@ -5,8 +5,8 @@ import (
"sync/atomic" "sync/atomic"
"time" "time"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
) )
const ( const (

View File

@ -5,8 +5,8 @@ import (
"testing" "testing"
"time" "time"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
) )
type testPeer struct { type testPeer struct {

View File

@ -7,11 +7,11 @@ import (
"sync/atomic" "sync/atomic"
"time" "time"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
"github.com/tendermint/tendermint/p2p" "github.com/tendermint/tendermint2/p2p"
sm "github.com/tendermint/tendermint/state" sm "github.com/tendermint/tendermint2/state"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
) )
const ( const (

View File

@ -6,10 +6,10 @@ import (
"fmt" "fmt"
"io" "io"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
dbm "github.com/tendermint/tendermint/db" dbm "github.com/tendermint/tendermint2/db"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
) )
/* /*

View File

@ -3,8 +3,8 @@ package main
import ( import (
"fmt" "fmt"
"github.com/tendermint/tendermint/account" "github.com/tendermint/tendermint2/account"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
) )
func gen_account() { func gen_account() {

View File

@ -8,12 +8,12 @@ import (
"os" "os"
"strconv" "strconv"
"github.com/tendermint/tendermint/account" "github.com/tendermint/tendermint2/account"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
dbm "github.com/tendermint/tendermint/db" dbm "github.com/tendermint/tendermint2/db"
sm "github.com/tendermint/tendermint/state" sm "github.com/tendermint/tendermint2/state"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
) )
func getString(prompt string) string { func getString(prompt string) string {

View File

@ -3,9 +3,9 @@ package main
import ( import (
"fmt" "fmt"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
"github.com/tendermint/tendermint/config" "github.com/tendermint/tendermint2/config"
sm "github.com/tendermint/tendermint/state" sm "github.com/tendermint/tendermint2/state"
) )
func gen_validator() { func gen_validator() {

View File

@ -1,7 +1,7 @@
package main package main
import ( import (
"github.com/tendermint/tendermint/logger" "github.com/tendermint/tendermint2/logger"
) )
var log = logger.New("module", "main") var log = logger.New("module", "main")

View File

@ -4,8 +4,8 @@ import (
"fmt" "fmt"
"os" "os"
"github.com/tendermint/tendermint/config" "github.com/tendermint/tendermint2/config"
"github.com/tendermint/tendermint/daemon" "github.com/tendermint/tendermint2/daemon"
) )
func main() { func main() {

View File

@ -4,7 +4,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
"github.com/tendermint/tendermint/p2p/upnp" "github.com/tendermint/tendermint2/p2p/upnp"
) )
func probe_upnp() { func probe_upnp() {

View File

@ -1,7 +1,7 @@
package config package config
import ( import (
// We can't use github.com/tendermint/tendermint/logger // We can't use github.com/tendermint/tendermint2/logger
// because that would create a dependency cycle. // because that would create a dependency cycle.
"github.com/tendermint/log15" "github.com/tendermint/log15"
) )

View File

@ -1,7 +1,7 @@
package consensus package consensus
import ( import (
"github.com/tendermint/tendermint/logger" "github.com/tendermint/tendermint2/logger"
) )
var log = logger.New("module", "consensus") var log = logger.New("module", "consensus")

View File

@ -3,11 +3,11 @@ package consensus
import ( import (
"fmt" "fmt"
"github.com/tendermint/tendermint/account" "github.com/tendermint/tendermint2/account"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
sm "github.com/tendermint/tendermint/state" sm "github.com/tendermint/tendermint2/state"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
) )
// Each signature of a POL (proof-of-lock, see whitepaper) is // Each signature of a POL (proof-of-lock, see whitepaper) is

View File

@ -1,10 +1,10 @@
package consensus package consensus
import ( import (
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
sm "github.com/tendermint/tendermint/state" sm "github.com/tendermint/tendermint2/state"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
"bytes" "bytes"
"testing" "testing"

View File

@ -8,13 +8,13 @@ import (
"sync/atomic" "sync/atomic"
"time" "time"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
bc "github.com/tendermint/tendermint/blockchain" bc "github.com/tendermint/tendermint2/blockchain"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
. "github.com/tendermint/tendermint/consensus/types" . "github.com/tendermint/tendermint2/consensus/types"
"github.com/tendermint/tendermint/p2p" "github.com/tendermint/tendermint2/p2p"
sm "github.com/tendermint/tendermint/state" sm "github.com/tendermint/tendermint2/state"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
) )
const ( const (

View File

@ -60,15 +60,15 @@ import (
"sync/atomic" "sync/atomic"
"time" "time"
"github.com/tendermint/tendermint/account" "github.com/tendermint/tendermint2/account"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
bc "github.com/tendermint/tendermint/blockchain" bc "github.com/tendermint/tendermint2/blockchain"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
"github.com/tendermint/tendermint/config" "github.com/tendermint/tendermint2/config"
. "github.com/tendermint/tendermint/consensus/types" . "github.com/tendermint/tendermint2/consensus/types"
mempl "github.com/tendermint/tendermint/mempool" mempl "github.com/tendermint/tendermint2/mempool"
sm "github.com/tendermint/tendermint/state" sm "github.com/tendermint/tendermint2/state"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
) )
const ( const (

View File

@ -4,7 +4,7 @@ import (
"bytes" "bytes"
"testing" "testing"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
) )
func TestSetupRound(t *testing.T) { func TestSetupRound(t *testing.T) {

View File

@ -3,10 +3,10 @@ package consensus
import ( import (
"sort" "sort"
bc "github.com/tendermint/tendermint/blockchain" bc "github.com/tendermint/tendermint2/blockchain"
dbm "github.com/tendermint/tendermint/db" dbm "github.com/tendermint/tendermint2/db"
mempl "github.com/tendermint/tendermint/mempool" mempl "github.com/tendermint/tendermint2/mempool"
sm "github.com/tendermint/tendermint/state" sm "github.com/tendermint/tendermint2/state"
) )
func randConsensusState() (*ConsensusState, []*sm.PrivValidator) { func randConsensusState() (*ConsensusState, []*sm.PrivValidator) {

View File

@ -5,9 +5,9 @@ import (
"fmt" "fmt"
"io" "io"
"github.com/tendermint/tendermint/account" "github.com/tendermint/tendermint2/account"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
) )
var ( var (

View File

@ -6,11 +6,11 @@ import (
"strings" "strings"
"sync" "sync"
"github.com/tendermint/tendermint/account" "github.com/tendermint/tendermint2/account"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
sm "github.com/tendermint/tendermint/state" sm "github.com/tendermint/tendermint2/state"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
) )
// VoteSet helps collect signatures from validators at each height+round // VoteSet helps collect signatures from validators at each height+round

View File

@ -3,10 +3,10 @@ package consensus
import ( import (
"bytes" "bytes"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
. "github.com/tendermint/tendermint/common/test" . "github.com/tendermint/tendermint2/common/test"
sm "github.com/tendermint/tendermint/state" sm "github.com/tendermint/tendermint2/state"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
"testing" "testing"
) )

View File

@ -4,16 +4,16 @@ import (
"os" "os"
"os/signal" "os/signal"
bc "github.com/tendermint/tendermint/blockchain" bc "github.com/tendermint/tendermint2/blockchain"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
"github.com/tendermint/tendermint/config" "github.com/tendermint/tendermint2/config"
"github.com/tendermint/tendermint/consensus" "github.com/tendermint/tendermint2/consensus"
dbm "github.com/tendermint/tendermint/db" dbm "github.com/tendermint/tendermint2/db"
mempl "github.com/tendermint/tendermint/mempool" mempl "github.com/tendermint/tendermint2/mempool"
"github.com/tendermint/tendermint/p2p" "github.com/tendermint/tendermint2/p2p"
"github.com/tendermint/tendermint/rpc" "github.com/tendermint/tendermint2/rpc"
"github.com/tendermint/tendermint/rpc/core" "github.com/tendermint/tendermint2/rpc/core"
sm "github.com/tendermint/tendermint/state" sm "github.com/tendermint/tendermint2/state"
) )
type Node struct { type Node struct {

View File

@ -1,7 +1,7 @@
package daemon package daemon
import ( import (
"github.com/tendermint/tendermint/logger" "github.com/tendermint/tendermint2/logger"
) )
var log = logger.New("module", "daemon") var log = logger.New("module", "daemon")

View File

@ -3,8 +3,8 @@ package db
import ( import (
"path" "path"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
"github.com/tendermint/tendermint/config" "github.com/tendermint/tendermint2/config"
) )
type DB interface { type DB interface {

View File

@ -5,8 +5,8 @@ import (
"os" "os"
"github.com/tendermint/log15" "github.com/tendermint/log15"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
"github.com/tendermint/tendermint/config" "github.com/tendermint/tendermint2/config"
) )
var rootHandler log15.Handler var rootHandler log15.Handler

View File

@ -1,7 +1,7 @@
package mempool package mempool
import ( import (
"github.com/tendermint/tendermint/logger" "github.com/tendermint/tendermint2/logger"
) )
var log = logger.New("module", "mempool") var log = logger.New("module", "mempool")

View File

@ -11,9 +11,9 @@ package mempool
import ( import (
"sync" "sync"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
sm "github.com/tendermint/tendermint/state" sm "github.com/tendermint/tendermint2/state"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
) )
type Mempool struct { type Mempool struct {

View File

@ -5,9 +5,9 @@ import (
"fmt" "fmt"
"sync/atomic" "sync/atomic"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
"github.com/tendermint/tendermint/p2p" "github.com/tendermint/tendermint2/p2p"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
) )
var ( var (

View File

@ -4,7 +4,7 @@ import (
"crypto/sha256" "crypto/sha256"
"io" "io"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
) )
// Node // Node

View File

@ -4,9 +4,9 @@ import (
"bytes" "bytes"
"fmt" "fmt"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
"github.com/tendermint/tendermint/db" "github.com/tendermint/tendermint2/db"
"runtime" "runtime"
"testing" "testing"

View File

@ -5,9 +5,9 @@ import (
"container/list" "container/list"
"sync" "sync"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
dbm "github.com/tendermint/tendermint/db" dbm "github.com/tendermint/tendermint2/db"
) )
/* /*

View File

@ -28,7 +28,7 @@ import (
"bytes" "bytes"
"crypto/sha256" "crypto/sha256"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
) )
func HashFromTwoHashes(left []byte, right []byte) []byte { func HashFromTwoHashes(left []byte, right []byte) []byte {

View File

@ -1,7 +1,7 @@
package merkle package merkle
import ( import (
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
"bytes" "bytes"
"testing" "testing"

View File

@ -15,7 +15,7 @@ import (
"sync/atomic" "sync/atomic"
"time" "time"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
) )
const ( const (

View File

@ -12,8 +12,8 @@ import (
flow "code.google.com/p/mxk/go1/flowcontrol" flow "code.google.com/p/mxk/go1/flowcontrol"
"github.com/tendermint/log15" "github.com/tendermint/log15"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
) )
const ( const (

View File

@ -6,8 +6,8 @@ import (
"strconv" "strconv"
"sync/atomic" "sync/atomic"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
"github.com/tendermint/tendermint/p2p/upnp" "github.com/tendermint/tendermint2/p2p/upnp"
) )
type Listener interface { type Listener interface {

View File

@ -1,7 +1,7 @@
package p2p package p2p
import ( import (
"github.com/tendermint/tendermint/logger" "github.com/tendermint/tendermint2/logger"
) )
var log = logger.New("module", "p2p") var log = logger.New("module", "p2p")

View File

@ -6,8 +6,8 @@ import (
"net" "net"
"sync/atomic" "sync/atomic"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
) )
type Peer struct { type Peer struct {

View File

@ -4,7 +4,7 @@ import (
"math/rand" "math/rand"
"testing" "testing"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
) )
// Returns an empty dummy peer // Returns an empty dummy peer

View File

@ -7,8 +7,8 @@ import (
"sync/atomic" "sync/atomic"
"time" "time"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
) )
var pexErrInvalidMessage = errors.New("Invalid PEX message") var pexErrInvalidMessage = errors.New("Invalid PEX message")

View File

@ -6,7 +6,7 @@ import (
"net" "net"
"time" "time"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
) )
type Reactor interface { type Reactor interface {

View File

@ -6,8 +6,8 @@ import (
"testing" "testing"
"time" "time"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
) )
type PeerMessage struct { type PeerMessage struct {

View File

@ -1,7 +1,7 @@
package upnp package upnp
import ( import (
"github.com/tendermint/tendermint/logger" "github.com/tendermint/tendermint2/logger"
) )
var log = logger.New("module", "upnp") var log = logger.New("module", "upnp")

View File

@ -6,7 +6,7 @@ import (
"net" "net"
"time" "time"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
) )
type UPNPCapabilities struct { type UPNPCapabilities struct {

View File

@ -1,7 +1,7 @@
package core package core
import ( import (
"github.com/tendermint/tendermint/account" "github.com/tendermint/tendermint2/account"
) )
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------

View File

@ -2,8 +2,8 @@ package core
import ( import (
"fmt" "fmt"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
) )
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------

View File

@ -2,9 +2,9 @@ package core
import ( import (
"fmt" "fmt"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
"github.com/tendermint/tendermint/state" "github.com/tendermint/tendermint2/state"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
) )
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------

View File

@ -1,10 +1,10 @@
package core package core
import ( import (
"github.com/tendermint/tendermint/config" "github.com/tendermint/tendermint2/config"
dbm "github.com/tendermint/tendermint/db" dbm "github.com/tendermint/tendermint2/db"
sm "github.com/tendermint/tendermint/state" sm "github.com/tendermint/tendermint2/state"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
) )
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------

View File

@ -1,10 +1,10 @@
package core package core
import ( import (
bc "github.com/tendermint/tendermint/blockchain" bc "github.com/tendermint/tendermint2/blockchain"
"github.com/tendermint/tendermint/consensus" "github.com/tendermint/tendermint2/consensus"
mempl "github.com/tendermint/tendermint/mempool" mempl "github.com/tendermint/tendermint2/mempool"
"github.com/tendermint/tendermint/p2p" "github.com/tendermint/tendermint2/p2p"
) )
var blockStore *bc.BlockStore var blockStore *bc.BlockStore

View File

@ -1,9 +1,9 @@
package core package core
import ( import (
"github.com/tendermint/tendermint/account" "github.com/tendermint/tendermint2/account"
sm "github.com/tendermint/tendermint/state" sm "github.com/tendermint/tendermint2/state"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
) )
type ResponseGenPrivAccount struct { type ResponseGenPrivAccount struct {

View File

@ -2,8 +2,8 @@ package core
import ( import (
"fmt" "fmt"
"github.com/tendermint/tendermint/account" "github.com/tendermint/tendermint2/account"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
) )
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------

View File

@ -1,7 +1,7 @@
package core package core
import ( import (
sm "github.com/tendermint/tendermint/state" sm "github.com/tendermint/tendermint2/state"
) )
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------

View File

@ -7,8 +7,8 @@ TODO: support Call && GetStorage.
import ( import (
"encoding/json" "encoding/json"
"fmt" "fmt"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
"github.com/tendermint/tendermint/rpc/core" "github.com/tendermint/tendermint2/rpc/core"
"io/ioutil" "io/ioutil"
"net/http" "net/http"
"reflect" "reflect"

View File

@ -6,7 +6,7 @@ import (
"regexp" "regexp"
"strconv" "strconv"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
) )
var ( var (

View File

@ -8,10 +8,10 @@ import (
"runtime/debug" "runtime/debug"
"time" "time"
"github.com/tendermint/tendermint/alert" "github.com/tendermint/tendermint2/alert"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
"github.com/tendermint/tendermint/config" "github.com/tendermint/tendermint2/config"
) )
func StartHTTPServer() { func StartHTTPServer() {

View File

@ -5,11 +5,11 @@ import (
"encoding/hex" "encoding/hex"
"encoding/json" "encoding/json"
"fmt" "fmt"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
"github.com/tendermint/tendermint/config" "github.com/tendermint/tendermint2/config"
"github.com/tendermint/tendermint/merkle" "github.com/tendermint/tendermint2/merkle"
"github.com/tendermint/tendermint/rpc/core" "github.com/tendermint/tendermint2/rpc/core"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
"io/ioutil" "io/ioutil"
"net/http" "net/http"
"net/url" "net/url"

View File

@ -5,12 +5,12 @@ import (
"encoding/hex" "encoding/hex"
"encoding/json" "encoding/json"
"fmt" "fmt"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
"github.com/tendermint/tendermint/config" "github.com/tendermint/tendermint2/config"
"github.com/tendermint/tendermint/rpc" "github.com/tendermint/tendermint2/rpc"
"github.com/tendermint/tendermint/rpc/core" "github.com/tendermint/tendermint2/rpc/core"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
"io/ioutil" "io/ioutil"
"net/http" "net/http"
"net/url" "net/url"

View File

@ -4,15 +4,15 @@ import (
"bytes" "bytes"
"encoding/hex" "encoding/hex"
"encoding/json" "encoding/json"
"github.com/tendermint/tendermint/account" "github.com/tendermint/tendermint2/account"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
"github.com/tendermint/tendermint/config" "github.com/tendermint/tendermint2/config"
"github.com/tendermint/tendermint/daemon" "github.com/tendermint/tendermint2/daemon"
"github.com/tendermint/tendermint/logger" "github.com/tendermint/tendermint2/logger"
"github.com/tendermint/tendermint/p2p" "github.com/tendermint/tendermint2/p2p"
"github.com/tendermint/tendermint/rpc" "github.com/tendermint/tendermint2/rpc"
"github.com/tendermint/tendermint/rpc/core" "github.com/tendermint/tendermint2/rpc/core"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
"io/ioutil" "io/ioutil"
"net/http" "net/http"
"net/url" "net/url"

View File

@ -4,11 +4,11 @@ import (
"bytes" "bytes"
"sort" "sort"
ac "github.com/tendermint/tendermint/account" ac "github.com/tendermint/tendermint2/account"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
dbm "github.com/tendermint/tendermint/db" dbm "github.com/tendermint/tendermint2/db"
"github.com/tendermint/tendermint/merkle" "github.com/tendermint/tendermint2/merkle"
) )
func makeStorage(db dbm.DB, root []byte) merkle.Tree { func makeStorage(db dbm.DB, root []byte) merkle.Tree {

View File

@ -1,9 +1,9 @@
package state package state
import ( import (
ac "github.com/tendermint/tendermint/account" ac "github.com/tendermint/tendermint2/account"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
"github.com/tendermint/tendermint/vm" "github.com/tendermint/tendermint2/vm"
) )
type AccountGetter interface { type AccountGetter interface {

View File

@ -4,10 +4,10 @@ import (
"bytes" "bytes"
"errors" "errors"
"github.com/tendermint/tendermint/account" "github.com/tendermint/tendermint2/account"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
"github.com/tendermint/tendermint/vm" "github.com/tendermint/tendermint2/vm"
) )
// NOTE: If an error occurs during block execution, state will be left // NOTE: If an error occurs during block execution, state will be left

View File

@ -4,12 +4,12 @@ import (
"io/ioutil" "io/ioutil"
"time" "time"
"github.com/tendermint/tendermint/account" "github.com/tendermint/tendermint2/account"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
dbm "github.com/tendermint/tendermint/db" dbm "github.com/tendermint/tendermint2/db"
"github.com/tendermint/tendermint/merkle" "github.com/tendermint/tendermint2/merkle"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
) )
type GenesisAccount struct { type GenesisAccount struct {

View File

@ -1,7 +1,7 @@
package state package state
import ( import (
"github.com/tendermint/tendermint/logger" "github.com/tendermint/tendermint2/logger"
) )
var log = logger.New("module", "state") var log = logger.New("module", "state")

View File

@ -9,12 +9,12 @@ import (
"math" "math"
"sync" "sync"
"github.com/tendermint/tendermint/account" "github.com/tendermint/tendermint2/account"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
"github.com/tendermint/tendermint/config" "github.com/tendermint/tendermint2/config"
. "github.com/tendermint/tendermint/consensus/types" . "github.com/tendermint/tendermint2/consensus/types"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
"github.com/tendermint/ed25519" "github.com/tendermint/ed25519"
) )

View File

@ -5,11 +5,11 @@ import (
"fmt" "fmt"
"time" "time"
"github.com/tendermint/tendermint/account" "github.com/tendermint/tendermint2/account"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
dbm "github.com/tendermint/tendermint/db" dbm "github.com/tendermint/tendermint2/db"
"github.com/tendermint/tendermint/merkle" "github.com/tendermint/tendermint2/merkle"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
) )
var ( var (

View File

@ -1,9 +1,9 @@
package state package state
import ( import (
"github.com/tendermint/tendermint/account" "github.com/tendermint/tendermint2/account"
"github.com/tendermint/tendermint/config" "github.com/tendermint/tendermint2/config"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
"bytes" "bytes"
"testing" "testing"

View File

@ -4,10 +4,10 @@ import (
"bytes" "bytes"
"sort" "sort"
"github.com/tendermint/tendermint/account" "github.com/tendermint/tendermint2/account"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
dbm "github.com/tendermint/tendermint/db" dbm "github.com/tendermint/tendermint2/db"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
"io/ioutil" "io/ioutil"
"os" "os"

View File

@ -1,10 +1,10 @@
package state package state
import ( import (
ac "github.com/tendermint/tendermint/account" ac "github.com/tendermint/tendermint2/account"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
"github.com/tendermint/tendermint/vm" "github.com/tendermint/tendermint2/vm"
"github.com/tendermint/tendermint/vm/sha3" "github.com/tendermint/tendermint2/vm/sha3"
) )
type TxCache struct { type TxCache struct {

View File

@ -5,9 +5,9 @@ import (
"fmt" "fmt"
"io" "io"
"github.com/tendermint/tendermint/account" "github.com/tendermint/tendermint2/account"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
) )
// Persistent (mostly) static data for each Validator // Persistent (mostly) static data for each Validator

View File

@ -7,10 +7,10 @@ import (
"sort" "sort"
"strings" "strings"
"github.com/tendermint/tendermint/account" "github.com/tendermint/tendermint2/account"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
"github.com/tendermint/tendermint/merkle" "github.com/tendermint/tendermint2/merkle"
"github.com/tendermint/tendermint/types" "github.com/tendermint/tendermint2/types"
) )
// ValidatorSet represent a set of *Validator at a given height. // ValidatorSet represent a set of *Validator at a given height.

View File

@ -1,8 +1,8 @@
package state package state
import ( import (
"github.com/tendermint/tendermint/account" "github.com/tendermint/tendermint2/account"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
"bytes" "bytes"
"testing" "testing"

View File

@ -8,11 +8,11 @@ import (
"strings" "strings"
"time" "time"
"github.com/tendermint/tendermint/account" "github.com/tendermint/tendermint2/account"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
"github.com/tendermint/tendermint/config" "github.com/tendermint/tendermint2/config"
"github.com/tendermint/tendermint/merkle" "github.com/tendermint/tendermint2/merkle"
) )
type Block struct { type Block struct {

View File

@ -1,7 +1,7 @@
package types package types
import ( import (
"github.com/tendermint/tendermint/logger" "github.com/tendermint/tendermint2/logger"
) )
var log = logger.New("module", "types") var log = logger.New("module", "types")

View File

@ -9,8 +9,8 @@ import (
"strings" "strings"
"sync" "sync"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
"github.com/tendermint/tendermint/merkle" "github.com/tendermint/tendermint2/merkle"
) )
const ( const (

View File

@ -5,7 +5,7 @@ import (
"io/ioutil" "io/ioutil"
"testing" "testing"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
) )
func TestBasicPartSet(t *testing.T) { func TestBasicPartSet(t *testing.T) {

View File

@ -4,9 +4,9 @@ import (
"errors" "errors"
"io" "io"
"github.com/tendermint/tendermint/account" "github.com/tendermint/tendermint2/account"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
) )
var ( var (

View File

@ -5,9 +5,9 @@ import (
"fmt" "fmt"
"io" "io"
"github.com/tendermint/tendermint/account" "github.com/tendermint/tendermint2/account"
"github.com/tendermint/tendermint/binary" "github.com/tendermint/tendermint2/binary"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
) )
var ( var (

View File

@ -1,7 +1,7 @@
package vm package vm
import ( import (
"github.com/tendermint/tendermint/logger" "github.com/tendermint/tendermint2/logger"
) )
var log = logger.New("module", "vm") var log = logger.New("module", "vm")

View File

@ -3,9 +3,9 @@ package vm
import ( import (
"code.google.com/p/go.crypto/ripemd160" "code.google.com/p/go.crypto/ripemd160"
"crypto/sha256" "crypto/sha256"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
"github.com/tendermint/tendermint/vm/secp256k1" "github.com/tendermint/tendermint2/vm/secp256k1"
"github.com/tendermint/tendermint/vm/sha3" "github.com/tendermint/tendermint2/vm/sha3"
) )
var nativeContracts = make(map[Word256]NativeContract) var nativeContracts = make(map[Word256]NativeContract)

View File

@ -2,7 +2,7 @@ package vm
import ( import (
"fmt" "fmt"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
) )
// Not goroutine safe // Not goroutine safe

View File

@ -1,9 +1,9 @@
package vm package vm
import ( import (
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
. "github.com/tendermint/tendermint/vm" . "github.com/tendermint/tendermint2/vm"
"github.com/tendermint/tendermint/vm/sha3" "github.com/tendermint/tendermint2/vm/sha3"
) )
type FakeAppState struct { type FakeAppState struct {

View File

@ -8,8 +8,8 @@ import (
"testing" "testing"
"time" "time"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
. "github.com/tendermint/tendermint/vm" . "github.com/tendermint/tendermint2/vm"
) )
func newAppState() *FakeAppState { func newAppState() *FakeAppState {

View File

@ -1,7 +1,7 @@
package vm package vm
import ( import (
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
) )
const ( const (

View File

@ -5,8 +5,8 @@ import (
"fmt" "fmt"
"math/big" "math/big"
. "github.com/tendermint/tendermint/common" . "github.com/tendermint/tendermint2/common"
"github.com/tendermint/tendermint/vm/sha3" "github.com/tendermint/tendermint2/vm/sha3"
) )
var ( var (