You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
452 B

  1. package proxy
  2. import (
  3. "testing"
  4. "time"
  5. "github.com/tendermint/go-p2p"
  6. "github.com/tendermint/tendermint/config/tendermint_test"
  7. "github.com/tendermint/tendermint/node"
  8. "github.com/tendermint/tendermint/types"
  9. )
  10. func TestPersistence(t *testing.T) {
  11. // create persistent dummy app
  12. // set state on dummy app
  13. // proxy handshake
  14. config := tendermint_test.ResetConfig("proxy_test_")
  15. multiApp := NewMultiAppConn(config, state, blockStore)
  16. }