OSDN Git Service

refactor toolbar/server (#390)
[bytom/vapor.git] / database / storage / storage.proto
index bba3a4c..24146ec 100644 (file)
@@ -3,8 +3,7 @@ option go_package = "storage";
 package chain.core.txdb.internal.storage;
 
 message UtxoEntry {
-  bool   isCoinBase  = 1;
-  uint64 blockHeight = 2;
-  bool   spent       = 3;
-  bool   isCliam     = 4;
+  uint32 type           = 1;
+  uint64 blockHeight    = 2;
+  bool   spent          = 3;
 }