Proof uses uint64 for blockHeight

This commit is contained in:
Ethan Frey
2017-01-17 17:22:34 +01:00
parent e0309007ad
commit fdc047ae7a
14 changed files with 193 additions and 194 deletions

View File

@ -23,7 +23,7 @@ type Application interface {
Query(query []byte) Result
// Get proof for state
Proof(key []byte, blockHeight int64) Result
Proof(key []byte, blockHeight uint64) Result
// Return the application Merkle root hash
Commit() Result