tendermint/proxy/multi_app_conn_test.go
2016-11-16 13:25:13 -05:00

23 lines
452 B
Go

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)
}