This commit is contained in:
Ethan Buchman
2016-08-24 01:44:20 -04:00
parent a0e4253edc
commit f37f56d4f1
3 changed files with 6 additions and 5 deletions

View File

@ -122,8 +122,8 @@ func NewCounterApplication() *CounterApplication {
return &CounterApplication{}
}
func (app *CounterApplication) Info() string {
return Fmt("txs:%v", app.txCount)
func (app *CounterApplication) Info() (string, *tmsp.TMSPInfo, *tmsp.LastBlockInfo, *tmsp.ConfigInfo) {
return Fmt("txs:%v", app.txCount), nil, nil, nil
}
func (app *CounterApplication) SetOption(key string, value string) (log string) {