Update README; Remove GetEvents() from Application

This commit is contained in:
Jae Kwon
2015-11-16 15:50:26 -08:00
parent d319c5be0d
commit 201bf2374b
5 changed files with 19 additions and 25 deletions

View File

@ -9,7 +9,7 @@ type Application interface {
Info() []string
// Append a tx, which may or may not get committed
AppendTx(tx []byte) RetCode
AppendTx(tx []byte) ([]Event, RetCode)
// Return the application Merkle root hash
GetHash() ([]byte, RetCode)
@ -28,7 +28,4 @@ type Application interface {
// Remove event listener
RemListener(key string) RetCode
// Get all events
GetEvents() []Event
}