Browse Source

Package import path change

pull/43/merge
Jae Kwon 10 years ago
parent
commit
13b6508ecd
99 changed files with 280 additions and 280 deletions
  1. +5
    -5
      Makefile
  2. +1
    -1
      account/account.go
  3. +1
    -1
      account/priv_account.go
  4. +2
    -2
      account/privkey.go
  5. +2
    -2
      account/pubkey.go
  6. +2
    -2
      account/signature.go
  7. +2
    -2
      account/signature_test.go
  8. +1
    -1
      alert/alert.go
  9. +1
    -1
      alert/email.go
  10. +1
    -1
      alert/log.go
  11. +1
    -1
      binary/log.go
  12. +1
    -1
      binary/reflect.go
  13. +1
    -1
      blockchain/log.go
  14. +2
    -2
      blockchain/pool.go
  15. +2
    -2
      blockchain/pool_test.go
  16. +5
    -5
      blockchain/reactor.go
  17. +4
    -4
      blockchain/store.go
  18. +2
    -2
      cmd/gen_account.go
  19. +6
    -6
      cmd/gen_tx.go
  20. +3
    -3
      cmd/gen_validator.go
  21. +1
    -1
      cmd/log.go
  22. +3
    -3
      cmd/main.go
  23. +1
    -1
      cmd/probe_upnp.go
  24. +1
    -1
      config/log.go
  25. +1
    -1
      consensus/log.go
  26. +5
    -5
      consensus/pol.go
  27. +4
    -4
      consensus/pol_test.go
  28. +7
    -7
      consensus/reactor.go
  29. +9
    -9
      consensus/state.go
  30. +1
    -1
      consensus/state_test.go
  31. +4
    -4
      consensus/test.go
  32. +3
    -3
      consensus/types/proposal.go
  33. +5
    -5
      consensus/vote_set.go
  34. +4
    -4
      consensus/vote_set_test.go
  35. +11
    -11
      daemon/daemon.go
  36. +1
    -1
      daemon/log.go
  37. +2
    -2
      db/db.go
  38. +2
    -2
      logger/log.go
  39. +1
    -1
      mempool/log.go
  40. +3
    -3
      mempool/mempool.go
  41. +3
    -3
      mempool/reactor.go
  42. +1
    -1
      merkle/iavl_node.go
  43. +3
    -3
      merkle/iavl_test.go
  44. +3
    -3
      merkle/iavl_tree.go
  45. +1
    -1
      merkle/simple_tree.go
  46. +1
    -1
      merkle/simple_tree_test.go
  47. +1
    -1
      p2p/addrbook.go
  48. +2
    -2
      p2p/connection.go
  49. +2
    -2
      p2p/listener.go
  50. +1
    -1
      p2p/log.go
  51. +2
    -2
      p2p/peer.go
  52. +1
    -1
      p2p/peer_set_test.go
  53. +2
    -2
      p2p/pex_reactor.go
  54. +1
    -1
      p2p/switch.go
  55. +2
    -2
      p2p/switch_test.go
  56. +1
    -1
      p2p/upnp/log.go
  57. +1
    -1
      p2p/upnp/probe.go
  58. +2
    -2
      rpc/client.go
  59. +4
    -4
      rpc/client_methods.go
  60. +2
    -2
      rpc/core/accounts.go
  61. +2
    -2
      rpc/core/blocks.go
  62. +3
    -3
      rpc/core/mempool.go
  63. +4
    -4
      rpc/core/net.go
  64. +5
    -5
      rpc/core/pipe.go
  65. +3
    -3
      rpc/core/responses.go
  66. +5
    -5
      rpc/core/txs.go
  67. +1
    -1
      rpc/core/validators.go
  68. +2
    -2
      rpc/handlers.go
  69. +1
    -1
      rpc/http_params.go
  70. +4
    -4
      rpc/http_server.go
  71. +6
    -6
      rpc/test/http_rpc_test.go
  72. +6
    -6
      rpc/test/json_rpc_test.go
  73. +10
    -10
      rpc/test/test.go
  74. +5
    -5
      state/block_cache.go
  75. +3
    -3
      state/common.go
  76. +4
    -4
      state/execution.go
  77. +6
    -6
      state/genesis.go
  78. +1
    -1
      state/log.go
  79. +6
    -6
      state/priv_validator.go
  80. +5
    -5
      state/state.go
  81. +3
    -3
      state/state_test.go
  82. +4
    -4
      state/test.go
  83. +4
    -4
      state/tx_cache.go
  84. +3
    -3
      state/validator.go
  85. +4
    -4
      state/validator_set.go
  86. +2
    -2
      state/validator_set_test.go
  87. +5
    -5
      types/block.go
  88. +1
    -1
      types/log.go
  89. +2
    -2
      types/part_set.go
  90. +1
    -1
      types/part_set_test.go
  91. +3
    -3
      types/tx.go
  92. +3
    -3
      types/vote.go
  93. +1
    -1
      vm/log.go
  94. +3
    -3
      vm/native.go
  95. +1
    -1
      vm/stack.go
  96. +3
    -3
      vm/test/fake_app_state.go
  97. +2
    -2
      vm/test/vm_test.go
  98. +1
    -1
      vm/types.go
  99. +2
    -2
      vm/vm.go

+ 5
- 5
Makefile View File

@ -3,19 +3,19 @@
all: build
build: get_deps
go build -o tendermint github.com/tendermint/tendermint2/cmd
go build -o tendermint github.com/tendermint/tendermint/cmd
build_race: get_deps
go build -race -o tendermint github.com/tendermint/tendermint2/cmd
go build -race -o tendermint github.com/tendermint/tendermint/cmd
test: build
go test github.com/tendermint/tendermint2/...
go test github.com/tendermint/tendermint/...
list_deps:
go list -f '{{join .Deps "\n"}}' github.com/tendermint/tendermint2/... | xargs go list -f '{{if not .Standard}}{{.ImportPath}}{{end}}'
go list -f '{{join .Deps "\n"}}' github.com/tendermint/tendermint/... | xargs go list -f '{{if not .Standard}}{{.ImportPath}}{{end}}'
get_deps:
go get github.com/tendermint/tendermint2/...
go get github.com/tendermint/tendermint/...
tendermint_root/priv_validator.json: tendermint_root/priv_validator.json.orig
cp $< $@


+ 1
- 1
account/account.go View File

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


+ 1
- 1
account/priv_account.go View File

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


+ 2
- 2
account/privkey.go View File

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


+ 2
- 2
account/pubkey.go View File

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


+ 2
- 2
account/signature.go View File

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


+ 2
- 2
account/signature_test.go View File

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


+ 1
- 1
alert/alert.go View File

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


+ 1
- 1
alert/email.go View File

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


+ 1
- 1
alert/log.go View File

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

+ 1
- 1
binary/log.go View File

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


+ 1
- 1
binary/reflect.go View File

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


+ 1
- 1
blockchain/log.go View File

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

+ 2
- 2
blockchain/pool.go View File

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


+ 2
- 2
blockchain/pool_test.go View File

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


+ 5
- 5
blockchain/reactor.go View File

@ -7,11 +7,11 @@ import (
"sync/atomic"
"time"
"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"
"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"
)
const (


+ 4
- 4
blockchain/store.go View File

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


+ 2
- 2
cmd/gen_account.go View File

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


+ 6
- 6
cmd/gen_tx.go View File

@ -8,12 +8,12 @@ import (
"os"
"strconv"
"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"
"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"
)
func getString(prompt string) string {


+ 3
- 3
cmd/gen_validator.go View File

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


+ 1
- 1
cmd/log.go View File

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

+ 3
- 3
cmd/main.go View File

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


+ 1
- 1
cmd/probe_upnp.go View File

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


+ 1
- 1
config/log.go View File

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


+ 1
- 1
consensus/log.go View File

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

+ 5
- 5
consensus/pol.go View File

@ -3,11 +3,11 @@ package consensus
import (
"fmt"
"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"
"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"
)
// Each signature of a POL (proof-of-lock, see whitepaper) is


+ 4
- 4
consensus/pol_test.go View File

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


+ 7
- 7
consensus/reactor.go View File

@ -8,13 +8,13 @@ import (
"sync/atomic"
"time"
"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"
"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"
)
const (


+ 9
- 9
consensus/state.go View File

@ -60,15 +60,15 @@ import (
"sync/atomic"
"time"
"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"
"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"
)
const (


+ 1
- 1
consensus/state_test.go View File

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


+ 4
- 4
consensus/test.go View File

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


+ 3
- 3
consensus/types/proposal.go View File

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


+ 5
- 5
consensus/vote_set.go View File

@ -6,11 +6,11 @@ import (
"strings"
"sync"
"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"
"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"
)
// VoteSet helps collect signatures from validators at each height+round


+ 4
- 4
consensus/vote_set_test.go View File

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


+ 11
- 11
daemon/daemon.go View File

@ -5,16 +5,16 @@ import (
"os/signal"
"github.com/ebuchman/debora"
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"
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"
)
type Node struct {
@ -173,7 +173,7 @@ func (n *Node) MempoolReactor() *mempl.MempoolReactor {
// debora variables
var (
AppName = "tendermint"
SrcPath = "github.com/tendermint/tendermint2/cmd"
SrcPath = "github.com/tendermint/tendermint/cmd"
PublicKey = "30820122300d06092a864886f70d01010105000382010f003082010a0282010100dd861e9cd5a3f3fc27d46531aa9d87f5b63f6358fa00397482c4ab93abf4ab2e3ed75380fc714d52b5e80afc184f21d5732f2d6dacc23f0e802e585ee005347c2af0ad992ee5c11b2a96f72bcae78bef314ba4448b33c3a1df7a4d6e6a808d21dfeb67ef974c0357ba54649dbcd92ec2a8d3a510da747e70cb859a7f9b15a6eceb2179c225afd3f8fb15be38988f9b82622d855f343af5830ca30a5beff3905b618f6cc39142a60ff5840595265a1f7b9fbd504760667a1b2508097c1831fd13f54c794a08468d65db9e27aff0a889665ebd7de4a6e9a6c09b3811b6cda623be48e1214ba0f9b378441e2a02b3891bc8ec1ae7081988e15c2f53fa6512784b390203010001"
DeboraCallPort = 56565


+ 1
- 1
daemon/log.go View File

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

+ 2
- 2
db/db.go View File

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


+ 2
- 2
logger/log.go View File

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


+ 1
- 1
mempool/log.go View File

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

+ 3
- 3
mempool/mempool.go View File

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


+ 3
- 3
mempool/reactor.go View File

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


+ 1
- 1
merkle/iavl_node.go View File

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


+ 3
- 3
merkle/iavl_test.go View File

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


+ 3
- 3
merkle/iavl_tree.go View File

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


+ 1
- 1
merkle/simple_tree.go View File

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


+ 1
- 1
merkle/simple_tree_test.go View File

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


+ 1
- 1
p2p/addrbook.go View File

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


+ 2
- 2
p2p/connection.go View File

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


+ 2
- 2
p2p/listener.go View File

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


+ 1
- 1
p2p/log.go View File

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

+ 2
- 2
p2p/peer.go View File

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


+ 1
- 1
p2p/peer_set_test.go View File

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


+ 2
- 2
p2p/pex_reactor.go View File

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


+ 1
- 1
p2p/switch.go View File

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


+ 2
- 2
p2p/switch_test.go View File

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


+ 1
- 1
p2p/upnp/log.go View File

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

+ 1
- 1
p2p/upnp/probe.go View File

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


+ 2
- 2
rpc/client.go View File

@ -3,7 +3,7 @@ package rpc
import (
"bytes"
"fmt"
"github.com/tendermint/tendermint2/binary"
"github.com/tendermint/tendermint/binary"
"io/ioutil"
"net/http"
"net/url"
@ -164,7 +164,7 @@ func argsToURLValues(argNames []string, args ...interface{}) (url.Values, error)
// import statements we will need for the templates
/*rpc-gen:imports:
github.com/tendermint/tendermint2/binary
github.com/tendermint/tendermint/binary
net/http
io/ioutil
fmt


+ 4
- 4
rpc/client_methods.go View File

@ -2,10 +2,10 @@ package rpc
import (
"fmt"
"github.com/tendermint/tendermint2/account"
"github.com/tendermint/tendermint2/binary"
"github.com/tendermint/tendermint2/rpc/core"
"github.com/tendermint/tendermint2/types"
"github.com/tendermint/tendermint/account"
"github.com/tendermint/tendermint/binary"
"github.com/tendermint/tendermint/rpc/core"
"github.com/tendermint/tendermint/types"
"io/ioutil"
"net/http"
)


+ 2
- 2
rpc/core/accounts.go View File

@ -2,8 +2,8 @@ package core
import (
"fmt"
"github.com/tendermint/tendermint2/account"
. "github.com/tendermint/tendermint2/common"
"github.com/tendermint/tendermint/account"
. "github.com/tendermint/tendermint/common"
)
func GenPrivAccount() (*ResponseGenPrivAccount, error) {


+ 2
- 2
rpc/core/blocks.go View File

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


+ 3
- 3
rpc/core/mempool.go View File

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


+ 4
- 4
rpc/core/net.go View File

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


+ 5
- 5
rpc/core/pipe.go View File

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


+ 3
- 3
rpc/core/responses.go View File

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


+ 5
- 5
rpc/core/txs.go View File

@ -2,11 +2,11 @@ package core
import (
"fmt"
"github.com/tendermint/tendermint2/account"
. "github.com/tendermint/tendermint2/common"
"github.com/tendermint/tendermint2/state"
"github.com/tendermint/tendermint2/types"
"github.com/tendermint/tendermint2/vm"
"github.com/tendermint/tendermint/account"
. "github.com/tendermint/tendermint/common"
"github.com/tendermint/tendermint/state"
"github.com/tendermint/tendermint/types"
"github.com/tendermint/tendermint/vm"
)
func toVMAccount(acc *account.Account) *vm.Account {


+ 1
- 1
rpc/core/validators.go View File

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


+ 2
- 2
rpc/handlers.go View File

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


+ 1
- 1
rpc/http_params.go View File

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


+ 4
- 4
rpc/http_server.go View File

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


+ 6
- 6
rpc/test/http_rpc_test.go View File

@ -4,12 +4,12 @@ import (
"bytes"
"encoding/hex"
"fmt"
"github.com/tendermint/tendermint2/binary"
. "github.com/tendermint/tendermint2/common"
"github.com/tendermint/tendermint2/merkle"
"github.com/tendermint/tendermint2/rpc/core"
"github.com/tendermint/tendermint2/state"
"github.com/tendermint/tendermint2/types"
"github.com/tendermint/tendermint/binary"
. "github.com/tendermint/tendermint/common"
"github.com/tendermint/tendermint/merkle"
"github.com/tendermint/tendermint/rpc/core"
"github.com/tendermint/tendermint/state"
"github.com/tendermint/tendermint/types"
"io/ioutil"
"net/http"
"testing"


+ 6
- 6
rpc/test/json_rpc_test.go View File

@ -5,12 +5,12 @@ import (
"encoding/hex"
"encoding/json"
"fmt"
"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"
"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"
"io/ioutil"
"net/http"
"net/url"


+ 10
- 10
rpc/test/test.go View File

@ -3,16 +3,16 @@ package rpc
import (
"bytes"
"encoding/hex"
"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/state"
"github.com/tendermint/tendermint2/types"
"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/state"
"github.com/tendermint/tendermint/types"
"io/ioutil"
"net/http"
"net/url"


+ 5
- 5
state/block_cache.go View File

@ -4,11 +4,11 @@ import (
"bytes"
"sort"
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"
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"
)
func makeStorage(db dbm.DB, root []byte) merkle.Tree {


+ 3
- 3
state/common.go View File

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


+ 4
- 4
state/execution.go View File

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


+ 6
- 6
state/genesis.go View File

@ -4,12 +4,12 @@ import (
"io/ioutil"
"time"
"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"
"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"
)
type GenesisAccount struct {


+ 1
- 1
state/log.go View File

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

+ 6
- 6
state/priv_validator.go View File

@ -9,12 +9,12 @@ import (
"math"
"sync"
"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/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/ed25519"
)


+ 5
- 5
state/state.go View File

@ -5,11 +5,11 @@ import (
"fmt"
"time"
"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"
"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"
)
var (


+ 3
- 3
state/state_test.go View File

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


+ 4
- 4
state/test.go View File

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


+ 4
- 4
state/tx_cache.go View File

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


+ 3
- 3
state/validator.go View File

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


+ 4
- 4
state/validator_set.go View File

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


+ 2
- 2
state/validator_set_test.go View File

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


+ 5
- 5
types/block.go View File

@ -8,11 +8,11 @@ import (
"strings"
"time"
"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"
"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"
)
type Block struct {


+ 1
- 1
types/log.go View File

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

+ 2
- 2
types/part_set.go View File

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


+ 1
- 1
types/part_set_test.go View File

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


+ 3
- 3
types/tx.go View File

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


+ 3
- 3
types/vote.go View File

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


+ 1
- 1
vm/log.go View File

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

+ 3
- 3
vm/native.go View File

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


+ 1
- 1
vm/stack.go View File

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


+ 3
- 3
vm/test/fake_app_state.go View File

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


+ 2
- 2
vm/test/vm_test.go View File

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


+ 1
- 1
vm/types.go View File

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


+ 2
- 2
vm/vm.go View File

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


Loading…
Cancel
Save