OSDN Git Service

feat: add build crosschain input (#91)
[bytom/vapor.git] / database / storage / storage.proto
1 syntax = "proto3";
2 option go_package = "storage";
3 package chain.core.txdb.internal.storage;
4
5 message UtxoEntry {
6   uint32 type           = 1;
7   uint64 blockHeight    = 2;
8   bool   spent          = 3;
9 }