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.
|
package proxy
|
|
|
|
import (
|
|
tmspcli "github.com/tendermint/tmsp/client"
|
|
)
|
|
|
|
type AppConn interface {
|
|
SetResponseCallback(tmspcli.Callback)
|
|
Error() error
|
|
|
|
EchoAsync(msg string)
|
|
FlushAsync()
|
|
AppendTxAsync(tx []byte)
|
|
CheckTxAsync(tx []byte)
|
|
GetHashAsync()
|
|
SetOptionAsync(key string, value string)
|
|
|
|
InfoSync() (info string, err error)
|
|
FlushSync() error
|
|
GetHashSync() (hash []byte, log string, err error)
|
|
}
|