mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-18 15:41:20 +00:00
abci.Info takes a struct; less merkleeyes
This commit is contained in:
@ -183,7 +183,7 @@ func NewCounterApplication() *CounterApplication {
|
|||||||
return &CounterApplication{}
|
return &CounterApplication{}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (app *CounterApplication) Info() abci.ResponseInfo {
|
func (app *CounterApplication) Info(req abci.RequestInfo) abci.ResponseInfo {
|
||||||
return abci.ResponseInfo{Data: Fmt("txs:%v", app.txCount)}
|
return abci.ResponseInfo{Data: Fmt("txs:%v", app.txCount)}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -19,6 +19,7 @@ import (
|
|||||||
"github.com/tendermint/tendermint/proxy"
|
"github.com/tendermint/tendermint/proxy"
|
||||||
sm "github.com/tendermint/tendermint/state"
|
sm "github.com/tendermint/tendermint/state"
|
||||||
"github.com/tendermint/tendermint/types"
|
"github.com/tendermint/tendermint/types"
|
||||||
|
"github.com/tendermint/tendermint/version"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Functionality to replay blocks and messages on recovery from a crash.
|
// Functionality to replay blocks and messages on recovery from a crash.
|
||||||
@ -199,7 +200,7 @@ func (h *Handshaker) NBlocks() int {
|
|||||||
// TODO: retry the handshake/replay if it fails ?
|
// TODO: retry the handshake/replay if it fails ?
|
||||||
func (h *Handshaker) Handshake(proxyApp proxy.AppConns) error {
|
func (h *Handshaker) Handshake(proxyApp proxy.AppConns) error {
|
||||||
// handshake is done via info request on the query conn
|
// handshake is done via info request on the query conn
|
||||||
res, err := proxyApp.Query().InfoSync()
|
res, err := proxyApp.Query().InfoSync(abci.RequestInfo{version.Version})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return errors.New(cmn.Fmt("Error calling Info: %v", err))
|
return errors.New(cmn.Fmt("Error calling Info: %v", err))
|
||||||
}
|
}
|
||||||
@ -235,7 +236,7 @@ func (h *Handshaker) ReplayBlocks(appHash []byte, appBlockHeight int, proxyApp p
|
|||||||
// If appBlockHeight == 0 it means that we are at genesis and hence should send InitChain
|
// If appBlockHeight == 0 it means that we are at genesis and hence should send InitChain
|
||||||
if appBlockHeight == 0 {
|
if appBlockHeight == 0 {
|
||||||
validators := types.TM2PB.Validators(h.state.Validators)
|
validators := types.TM2PB.Validators(h.state.Validators)
|
||||||
proxyApp.Consensus().InitChainSync(validators)
|
proxyApp.Consensus().InitChainSync(abci.RequestInitChain{validators})
|
||||||
}
|
}
|
||||||
|
|
||||||
// First handle edge cases and constraints on the storeBlockHeight
|
// First handle edge cases and constraints on the storeBlockHeight
|
||||||
|
@ -13,6 +13,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/tendermint/abci/example/dummy"
|
"github.com/tendermint/abci/example/dummy"
|
||||||
|
abci "github.com/tendermint/abci/types"
|
||||||
crypto "github.com/tendermint/go-crypto"
|
crypto "github.com/tendermint/go-crypto"
|
||||||
wire "github.com/tendermint/go-wire"
|
wire "github.com/tendermint/go-wire"
|
||||||
cmn "github.com/tendermint/tmlibs/common"
|
cmn "github.com/tendermint/tmlibs/common"
|
||||||
@ -358,7 +359,7 @@ func testHandshakeReplay(t *testing.T, nBlocks int, mode uint) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// get the latest app hash from the app
|
// get the latest app hash from the app
|
||||||
res, err := proxyApp.Query().InfoSync()
|
res, err := proxyApp.Query().InfoSync(abci.RequestInfo{""})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
@ -396,7 +397,7 @@ func buildAppStateFromChain(proxyApp proxy.AppConns,
|
|||||||
}
|
}
|
||||||
|
|
||||||
validators := types.TM2PB.Validators(state.Validators)
|
validators := types.TM2PB.Validators(state.Validators)
|
||||||
proxyApp.Consensus().InitChainSync(validators)
|
proxyApp.Consensus().InitChainSync(abci.RequestInitChain{validators})
|
||||||
|
|
||||||
defer proxyApp.Stop()
|
defer proxyApp.Stop()
|
||||||
switch mode {
|
switch mode {
|
||||||
@ -430,7 +431,7 @@ func buildTMStateFromChain(config *cfg.Config, state *sm.State, chain []*types.B
|
|||||||
defer proxyApp.Stop()
|
defer proxyApp.Stop()
|
||||||
|
|
||||||
validators := types.TM2PB.Validators(state.Validators)
|
validators := types.TM2PB.Validators(state.Validators)
|
||||||
proxyApp.Consensus().InitChainSync(validators)
|
proxyApp.Consensus().InitChainSync(abci.RequestInitChain{validators})
|
||||||
|
|
||||||
var latestAppHash []byte
|
var latestAppHash []byte
|
||||||
|
|
||||||
|
15
glide.lock
generated
15
glide.lock
generated
@ -1,5 +1,5 @@
|
|||||||
hash: 06ac555971ac41296cf6c869dfdf659ae911652d419e1a8c841aa791ff990556
|
hash: b55559e3306e64b9cbd25456874e392ee3372778beb081190956864073aa8b88
|
||||||
updated: 2017-09-22T10:13:57.706322194-04:00
|
updated: 2017-09-22T11:30:04.200558244-04:00
|
||||||
imports:
|
imports:
|
||||||
- name: github.com/btcsuite/btcd
|
- name: github.com/btcsuite/btcd
|
||||||
version: b8df516b4b267acf2de46be593a9d948d1d2c420
|
version: b8df516b4b267acf2de46be593a9d948d1d2c420
|
||||||
@ -99,7 +99,7 @@ imports:
|
|||||||
- leveldb/table
|
- leveldb/table
|
||||||
- leveldb/util
|
- leveldb/util
|
||||||
- name: github.com/tendermint/abci
|
- name: github.com/tendermint/abci
|
||||||
version: 864d1f80b36b440bde030a5c18d8ac3aa8c2949d
|
version: 191c4b6d176169ffc7f9972d490fa362a3b7d940
|
||||||
subpackages:
|
subpackages:
|
||||||
- client
|
- client
|
||||||
- example/counter
|
- example/counter
|
||||||
@ -112,19 +112,16 @@ imports:
|
|||||||
- edwards25519
|
- edwards25519
|
||||||
- extra25519
|
- extra25519
|
||||||
- name: github.com/tendermint/go-crypto
|
- name: github.com/tendermint/go-crypto
|
||||||
version: 95b7c9e09c49b91bfbb71bb63dd514eb55450f16
|
version: 311e8c1bf00fa5868daad4f8ea56dcad539182c0
|
||||||
- name: github.com/tendermint/go-wire
|
- name: github.com/tendermint/go-wire
|
||||||
version: 5f88da3dbc1a72844e6dfaf274ce87f851d488eb
|
version: 5f88da3dbc1a72844e6dfaf274ce87f851d488eb
|
||||||
subpackages:
|
subpackages:
|
||||||
- data
|
- data
|
||||||
- data/base58
|
- data/base58
|
||||||
- name: github.com/tendermint/merkleeyes
|
- name: github.com/tendermint/merkleeyes
|
||||||
version: 102aaf5a8ffda1846413fb22805a94def2045b9f
|
version: 2f6e5d31e7a35045d8d0a5895cb1fec33dd4d32b
|
||||||
subpackages:
|
subpackages:
|
||||||
- app
|
|
||||||
- client
|
|
||||||
- iavl
|
- iavl
|
||||||
- testutil
|
|
||||||
- name: github.com/tendermint/tmlibs
|
- name: github.com/tendermint/tmlibs
|
||||||
version: 2130c329eb56aca8509ee1fec40d766f6541d8e7
|
version: 2130c329eb56aca8509ee1fec40d766f6541d8e7
|
||||||
subpackages:
|
subpackages:
|
||||||
@ -209,3 +206,5 @@ testImports:
|
|||||||
subpackages:
|
subpackages:
|
||||||
- assert
|
- assert
|
||||||
- require
|
- require
|
||||||
|
- name: github.com/tendermint/iavl
|
||||||
|
version: 8fa7ec23377d7af91fa84b83a16abd24cc3acc71
|
||||||
|
10
glide.yaml
10
glide.yaml
@ -14,13 +14,13 @@ import:
|
|||||||
- package: github.com/spf13/cobra
|
- package: github.com/spf13/cobra
|
||||||
- package: github.com/spf13/viper
|
- package: github.com/spf13/viper
|
||||||
- package: github.com/tendermint/abci
|
- package: github.com/tendermint/abci
|
||||||
version: v0.5.0
|
version: ~0.6.0
|
||||||
subpackages:
|
subpackages:
|
||||||
- client
|
- client
|
||||||
- example/dummy
|
- example/dummy
|
||||||
- types
|
- types
|
||||||
- package: github.com/tendermint/go-crypto
|
- package: github.com/tendermint/go-crypto
|
||||||
version: ~0.2.2
|
version: ~0.3.0
|
||||||
- package: github.com/tendermint/go-wire
|
- package: github.com/tendermint/go-wire
|
||||||
version: ~0.6.2
|
version: ~0.6.2
|
||||||
subpackages:
|
subpackages:
|
||||||
@ -46,12 +46,6 @@ import:
|
|||||||
subpackages:
|
subpackages:
|
||||||
- context
|
- context
|
||||||
- package: google.golang.org/grpc
|
- package: google.golang.org/grpc
|
||||||
- package: github.com/tendermint/merkleeyes
|
|
||||||
version: ~0.2.4
|
|
||||||
subpackages:
|
|
||||||
- app
|
|
||||||
- iavl
|
|
||||||
- testutil
|
|
||||||
testImport:
|
testImport:
|
||||||
- package: github.com/go-kit/kit
|
- package: github.com/go-kit/kit
|
||||||
subpackages:
|
subpackages:
|
||||||
|
@ -12,9 +12,9 @@ type AppConnConsensus interface {
|
|||||||
SetResponseCallback(abcicli.Callback)
|
SetResponseCallback(abcicli.Callback)
|
||||||
Error() error
|
Error() error
|
||||||
|
|
||||||
InitChainSync(validators []*types.Validator) (err error)
|
InitChainSync(types.RequestInitChain) (err error)
|
||||||
|
|
||||||
BeginBlockSync(hash []byte, header *types.Header) (err error)
|
BeginBlockSync(types.RequestBeginBlock) (err error)
|
||||||
DeliverTxAsync(tx []byte) *abcicli.ReqRes
|
DeliverTxAsync(tx []byte) *abcicli.ReqRes
|
||||||
EndBlockSync(height uint64) (types.ResponseEndBlock, error)
|
EndBlockSync(height uint64) (types.ResponseEndBlock, error)
|
||||||
CommitSync() (res types.Result)
|
CommitSync() (res types.Result)
|
||||||
@ -34,8 +34,8 @@ type AppConnQuery interface {
|
|||||||
Error() error
|
Error() error
|
||||||
|
|
||||||
EchoSync(string) (res types.Result)
|
EchoSync(string) (res types.Result)
|
||||||
InfoSync() (resInfo types.ResponseInfo, err error)
|
InfoSync(types.RequestInfo) (types.ResponseInfo, error)
|
||||||
QuerySync(reqQuery types.RequestQuery) (resQuery types.ResponseQuery, err error)
|
QuerySync(types.RequestQuery) (types.ResponseQuery, error)
|
||||||
|
|
||||||
// SetOptionSync(key string, value string) (res types.Result)
|
// SetOptionSync(key string, value string) (res types.Result)
|
||||||
}
|
}
|
||||||
@ -61,12 +61,12 @@ func (app *appConnConsensus) Error() error {
|
|||||||
return app.appConn.Error()
|
return app.appConn.Error()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (app *appConnConsensus) InitChainSync(validators []*types.Validator) (err error) {
|
func (app *appConnConsensus) InitChainSync(req types.RequestInitChain) (err error) {
|
||||||
return app.appConn.InitChainSync(validators)
|
return app.appConn.InitChainSync(req)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (app *appConnConsensus) BeginBlockSync(hash []byte, header *types.Header) (err error) {
|
func (app *appConnConsensus) BeginBlockSync(req types.RequestBeginBlock) (err error) {
|
||||||
return app.appConn.BeginBlockSync(hash, header)
|
return app.appConn.BeginBlockSync(req)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (app *appConnConsensus) DeliverTxAsync(tx []byte) *abcicli.ReqRes {
|
func (app *appConnConsensus) DeliverTxAsync(tx []byte) *abcicli.ReqRes {
|
||||||
@ -135,8 +135,8 @@ func (app *appConnQuery) EchoSync(msg string) (res types.Result) {
|
|||||||
return app.appConn.EchoSync(msg)
|
return app.appConn.EchoSync(msg)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (app *appConnQuery) InfoSync() (types.ResponseInfo, error) {
|
func (app *appConnQuery) InfoSync(req types.RequestInfo) (types.ResponseInfo, error) {
|
||||||
return app.appConn.InfoSync()
|
return app.appConn.InfoSync(req)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (app *appConnQuery) QuerySync(reqQuery types.RequestQuery) (types.ResponseQuery, error) {
|
func (app *appConnQuery) QuerySync(reqQuery types.RequestQuery) (types.ResponseQuery, error) {
|
||||||
|
@ -17,7 +17,7 @@ import (
|
|||||||
type AppConnTest interface {
|
type AppConnTest interface {
|
||||||
EchoAsync(string) *abcicli.ReqRes
|
EchoAsync(string) *abcicli.ReqRes
|
||||||
FlushSync() error
|
FlushSync() error
|
||||||
InfoSync() (types.ResponseInfo, error)
|
InfoSync(types.RequestInfo) (types.ResponseInfo, error)
|
||||||
}
|
}
|
||||||
|
|
||||||
type appConnTest struct {
|
type appConnTest struct {
|
||||||
@ -36,8 +36,8 @@ func (app *appConnTest) FlushSync() error {
|
|||||||
return app.appConn.FlushSync()
|
return app.appConn.FlushSync()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (app *appConnTest) InfoSync() (types.ResponseInfo, error) {
|
func (app *appConnTest) InfoSync(req types.RequestInfo) (types.ResponseInfo, error) {
|
||||||
return app.appConn.InfoSync()
|
return app.appConn.InfoSync(req)
|
||||||
}
|
}
|
||||||
|
|
||||||
//----------------------------------------
|
//----------------------------------------
|
||||||
@ -109,7 +109,7 @@ func BenchmarkEcho(b *testing.B) {
|
|||||||
proxy.FlushSync()
|
proxy.FlushSync()
|
||||||
|
|
||||||
b.StopTimer()
|
b.StopTimer()
|
||||||
// info := proxy.InfoSync()
|
// info := proxy.InfoSync(types.RequestInfo{""})
|
||||||
//b.Log("N: ", b.N, info)
|
//b.Log("N: ", b.N, info)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -138,7 +138,7 @@ func TestInfo(t *testing.T) {
|
|||||||
proxy := NewAppConnTest(cli)
|
proxy := NewAppConnTest(cli)
|
||||||
t.Log("Connected")
|
t.Log("Connected")
|
||||||
|
|
||||||
resInfo, err := proxy.InfoSync()
|
resInfo, err := proxy.InfoSync(types.RequestInfo{""})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Errorf("Unexpected error: %v", err)
|
t.Errorf("Unexpected error: %v", err)
|
||||||
}
|
}
|
||||||
|
@ -5,11 +5,20 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
merktest "github.com/tendermint/merkleeyes/testutil"
|
|
||||||
|
cmn "github.com/tendermint/tmlibs/common"
|
||||||
|
|
||||||
"github.com/tendermint/tendermint/rpc/client"
|
"github.com/tendermint/tendermint/rpc/client"
|
||||||
"github.com/tendermint/tendermint/types"
|
"github.com/tendermint/tendermint/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// MakeTxKV returns a text transaction, allong with expected key, value pair
|
||||||
|
func MakeTxKV() ([]byte, []byte, []byte) {
|
||||||
|
k := []byte(cmn.RandStr(8))
|
||||||
|
v := []byte(cmn.RandStr(8))
|
||||||
|
return k, v, append(k, append([]byte("="), v...)...)
|
||||||
|
}
|
||||||
|
|
||||||
func TestHeaderEvents(t *testing.T) {
|
func TestHeaderEvents(t *testing.T) {
|
||||||
require := require.New(t)
|
require := require.New(t)
|
||||||
for i, c := range GetClients() {
|
for i, c := range GetClients() {
|
||||||
@ -76,7 +85,7 @@ func TestTxEventsSentWithBroadcastTxAsync(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// make the tx
|
// make the tx
|
||||||
_, _, tx := merktest.MakeTxKV()
|
_, _, tx := MakeTxKV()
|
||||||
evtTyp := types.EventStringTx(types.Tx(tx))
|
evtTyp := types.EventStringTx(types.Tx(tx))
|
||||||
|
|
||||||
// send async
|
// send async
|
||||||
@ -109,7 +118,7 @@ func TestTxEventsSentWithBroadcastTxSync(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// make the tx
|
// make the tx
|
||||||
_, _, tx := merktest.MakeTxKV()
|
_, _, tx := MakeTxKV()
|
||||||
evtTyp := types.EventStringTx(types.Tx(tx))
|
evtTyp := types.EventStringTx(types.Tx(tx))
|
||||||
|
|
||||||
// send async
|
// send async
|
||||||
|
@ -4,7 +4,7 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
meapp "github.com/tendermint/merkleeyes/app"
|
"github.com/tendermint/abci/example/dummy"
|
||||||
nm "github.com/tendermint/tendermint/node"
|
nm "github.com/tendermint/tendermint/node"
|
||||||
rpctest "github.com/tendermint/tendermint/rpc/test"
|
rpctest "github.com/tendermint/tendermint/rpc/test"
|
||||||
)
|
)
|
||||||
@ -12,8 +12,8 @@ import (
|
|||||||
var node *nm.Node
|
var node *nm.Node
|
||||||
|
|
||||||
func TestMain(m *testing.M) {
|
func TestMain(m *testing.M) {
|
||||||
// start a tendermint node (and merkleeyes) in the background to test against
|
// start a tendermint node (and dummy) in the background to test against
|
||||||
app := meapp.NewMerkleEyesApp("", 100)
|
app := dummy.NewDummyApplication()
|
||||||
node = rpctest.StartTendermint(app)
|
node = rpctest.StartTendermint(app)
|
||||||
code := m.Run()
|
code := m.Run()
|
||||||
|
|
||||||
|
@ -6,6 +6,7 @@ import (
|
|||||||
"github.com/tendermint/tendermint/rpc/client"
|
"github.com/tendermint/tendermint/rpc/client"
|
||||||
ctypes "github.com/tendermint/tendermint/rpc/core/types"
|
ctypes "github.com/tendermint/tendermint/rpc/core/types"
|
||||||
"github.com/tendermint/tendermint/types"
|
"github.com/tendermint/tendermint/types"
|
||||||
|
"github.com/tendermint/tendermint/version"
|
||||||
)
|
)
|
||||||
|
|
||||||
// ABCIApp will send all abci related request to the named app,
|
// ABCIApp will send all abci related request to the named app,
|
||||||
@ -20,7 +21,7 @@ func (a ABCIApp) _assertABCIClient() client.ABCIClient {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (a ABCIApp) ABCIInfo() (*ctypes.ResultABCIInfo, error) {
|
func (a ABCIApp) ABCIInfo() (*ctypes.ResultABCIInfo, error) {
|
||||||
return &ctypes.ResultABCIInfo{a.App.Info()}, nil
|
return &ctypes.ResultABCIInfo{a.App.Info(abci.RequestInfo{version.Version})}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (a ABCIApp) ABCIQuery(path string, data data.Bytes, prove bool) (*ctypes.ResultABCIQuery, error) {
|
func (a ABCIApp) ABCIQuery(path string, data data.Bytes, prove bool) (*ctypes.ResultABCIQuery, error) {
|
||||||
|
@ -7,7 +7,6 @@ import (
|
|||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
"github.com/tendermint/merkleeyes/iavl"
|
"github.com/tendermint/merkleeyes/iavl"
|
||||||
merktest "github.com/tendermint/merkleeyes/testutil"
|
|
||||||
"github.com/tendermint/tendermint/rpc/client"
|
"github.com/tendermint/tendermint/rpc/client"
|
||||||
rpctest "github.com/tendermint/tendermint/rpc/test"
|
rpctest "github.com/tendermint/tendermint/rpc/test"
|
||||||
"github.com/tendermint/tendermint/types"
|
"github.com/tendermint/tendermint/types"
|
||||||
@ -49,7 +48,7 @@ func TestInfo(t *testing.T) {
|
|||||||
require.Nil(t, err, "%d: %+v", i, err)
|
require.Nil(t, err, "%d: %+v", i, err)
|
||||||
// TODO: this is not correct - fix merkleeyes!
|
// TODO: this is not correct - fix merkleeyes!
|
||||||
// assert.EqualValues(t, status.LatestBlockHeight, info.Response.LastBlockHeight)
|
// assert.EqualValues(t, status.LatestBlockHeight, info.Response.LastBlockHeight)
|
||||||
assert.True(t, strings.HasPrefix(info.Response.Data, "size"))
|
assert.True(t, strings.Contains(info.Response.Data, "size"))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -115,7 +114,7 @@ func TestAppCalls(t *testing.T) {
|
|||||||
assert.NotNil(err) // no block yet
|
assert.NotNil(err) // no block yet
|
||||||
|
|
||||||
// write something
|
// write something
|
||||||
k, v, tx := merktest.MakeTxKV()
|
k, v, tx := MakeTxKV()
|
||||||
bres, err := c.BroadcastTxCommit(tx)
|
bres, err := c.BroadcastTxCommit(tx)
|
||||||
require.Nil(err, "%d: %+v", i, err)
|
require.Nil(err, "%d: %+v", i, err)
|
||||||
require.True(bres.DeliverTx.Code.IsOK())
|
require.True(bres.DeliverTx.Code.IsOK())
|
||||||
@ -193,7 +192,7 @@ func TestBroadcastTxSync(t *testing.T) {
|
|||||||
initMempoolSize := mempool.Size()
|
initMempoolSize := mempool.Size()
|
||||||
|
|
||||||
for i, c := range GetClients() {
|
for i, c := range GetClients() {
|
||||||
_, _, tx := merktest.MakeTxKV()
|
_, _, tx := MakeTxKV()
|
||||||
bres, err := c.BroadcastTxSync(tx)
|
bres, err := c.BroadcastTxSync(tx)
|
||||||
require.Nil(err, "%d: %+v", i, err)
|
require.Nil(err, "%d: %+v", i, err)
|
||||||
require.True(bres.Code.IsOK())
|
require.True(bres.Code.IsOK())
|
||||||
@ -211,7 +210,7 @@ func TestBroadcastTxCommit(t *testing.T) {
|
|||||||
|
|
||||||
mempool := node.MempoolReactor().Mempool
|
mempool := node.MempoolReactor().Mempool
|
||||||
for i, c := range GetClients() {
|
for i, c := range GetClients() {
|
||||||
_, _, tx := merktest.MakeTxKV()
|
_, _, tx := MakeTxKV()
|
||||||
bres, err := c.BroadcastTxCommit(tx)
|
bres, err := c.BroadcastTxCommit(tx)
|
||||||
require.Nil(err, "%d: %+v", i, err)
|
require.Nil(err, "%d: %+v", i, err)
|
||||||
require.True(bres.CheckTx.Code.IsOK())
|
require.True(bres.CheckTx.Code.IsOK())
|
||||||
@ -226,7 +225,7 @@ func TestTx(t *testing.T) {
|
|||||||
|
|
||||||
// first we broadcast a tx
|
// first we broadcast a tx
|
||||||
c := getHTTPClient()
|
c := getHTTPClient()
|
||||||
_, _, tx := merktest.MakeTxKV()
|
_, _, tx := MakeTxKV()
|
||||||
bres, err := c.BroadcastTxCommit(tx)
|
bres, err := c.BroadcastTxCommit(tx)
|
||||||
require.Nil(err, "%+v", err)
|
require.Nil(err, "%+v", err)
|
||||||
|
|
||||||
|
@ -4,6 +4,7 @@ import (
|
|||||||
abci "github.com/tendermint/abci/types"
|
abci "github.com/tendermint/abci/types"
|
||||||
data "github.com/tendermint/go-wire/data"
|
data "github.com/tendermint/go-wire/data"
|
||||||
ctypes "github.com/tendermint/tendermint/rpc/core/types"
|
ctypes "github.com/tendermint/tendermint/rpc/core/types"
|
||||||
|
"github.com/tendermint/tendermint/version"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Query the application for some information.
|
// Query the application for some information.
|
||||||
@ -86,7 +87,7 @@ func ABCIQuery(path string, data data.Bytes, prove bool) (*ctypes.ResultABCIQuer
|
|||||||
// }
|
// }
|
||||||
// ```
|
// ```
|
||||||
func ABCIInfo() (*ctypes.ResultABCIInfo, error) {
|
func ABCIInfo() (*ctypes.ResultABCIInfo, error) {
|
||||||
resInfo, err := proxyAppQuery.InfoSync()
|
resInfo, err := proxyAppQuery.InfoSync(abci.RequestInfo{version.Version})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -83,7 +83,10 @@ func execBlockOnProxyApp(eventCache types.Fireable, proxyAppConn proxy.AppConnCo
|
|||||||
proxyAppConn.SetResponseCallback(proxyCb)
|
proxyAppConn.SetResponseCallback(proxyCb)
|
||||||
|
|
||||||
// Begin block
|
// Begin block
|
||||||
err := proxyAppConn.BeginBlockSync(block.Hash(), types.TM2PB.Header(block.Header))
|
err := proxyAppConn.BeginBlockSync(abci.RequestBeginBlock{
|
||||||
|
block.Hash(),
|
||||||
|
types.TM2PB.Header(block.Header),
|
||||||
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logger.Error("Error in proxyAppConn.BeginBlock", "err", err)
|
logger.Error("Error in proxyAppConn.BeginBlock", "err", err)
|
||||||
return nil, err
|
return nil, err
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
#! /bin/bash
|
|
||||||
# This is a sample bash script for MerkleEyes.
|
|
||||||
# NOTE: mintnet expects data.sock to be created
|
|
||||||
|
|
||||||
go get github.com/tendermint/merkleeyes/cmd/merkleeyes
|
|
||||||
|
|
||||||
merkleeyes server --address="unix:///data/tendermint/data/data.sock"
|
|
Reference in New Issue
Block a user