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"
"io"
"github.com/tendermint/tendermint/binary"
"github.com/tendermint/tendermint2/binary"
)
// Signable is an interface for all signable things.

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,7 +1,7 @@
package config
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.
"github.com/tendermint/log15"
)

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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