mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 06:42:16 +00:00
23 lines
452 B
Go
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)
|
|
|
|
}
|