clean up kvstore example

This commit is contained in:
Callum Waters
2022-09-29 09:58:23 +02:00
parent e35b57dc4e
commit 2dfcbcc310
9 changed files with 394 additions and 342 deletions
+5 -6
View File
@@ -2,10 +2,9 @@ package kvstore
// Return codes for the examples
const (
CodeTypeOK uint32 = 0
CodeTypeEncodingError uint32 = 1
CodeTypeBadNonce uint32 = 2
CodeTypeUnauthorized uint32 = 3
CodeTypeUnknownError uint32 = 4
CodeTypeExecuted uint32 = 5
CodeTypeOK uint32 = 0
CodeTypeEncodingError uint32 = 1
CodeTypeInvalidTxFormat uint32 = 2
CodeTypeUnauthorized uint32 = 3
CodeTypeExecuted uint32 = 5
)