tendermint/proxy/multi_app_conn_test.go

23 lines
452 B
Go
Raw Normal View History

2016-08-25 00:18:03 -04:00
package proxy
import (
"testing"
"time"
"github.com/tendermint/go-p2p"
"github.com/tendermint/tendermint/config/tendermint_test"
"github.com/tendermint/tendermint/node"
"github.com/tendermint/tendermint/types"
)
func TestPersistence(t *testing.T) {
// create persistent dummy app
// set state on dummy app
// proxy handshake
config := tendermint_test.ResetConfig("proxy_test_")
multiApp := NewMultiAppConn(config, state, blockStore)
}