Swap Query return params

This commit is contained in:
Jae Kwon
2016-01-22 16:18:35 -08:00
parent 8ae0a0a481
commit 53a8a40785
4 changed files with 6 additions and 6 deletions

View File

@@ -27,5 +27,5 @@ type Application interface {
RemListener(key string) RetCode
// Query for state
Query(query []byte) (RetCode, []byte)
Query(query []byte) ([]byte, RetCode)
}