X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=protocol%2Fbc%2Fbc.proto;h=5a38c4c75944918b7773f922e2bb9c755977bb64;hb=ee01d543fdfe1fd0a4d548965c66f7923ea7b062;hp=59d70c224da715e1d404fd47a7750756ab2fd4eb;hpb=cc968002ceac2dfd7665c2ac2b4c32ab6017b525;p=bytom%2Fvapor.git diff --git a/protocol/bc/bc.proto b/protocol/bc/bc.proto index 59d70c22..5a38c4c7 100644 --- a/protocol/bc/bc.proto +++ b/protocol/bc/bc.proto @@ -76,16 +76,15 @@ message BlockHeader { uint64 nonce = 7; uint64 bits = 8; TransactionStatus transaction_status = 9; - Proof Proof = 10; - bytes extra = 11; - bytes coinbase = 12; } message TxHeader { uint64 version = 1; uint64 serialized_size = 2; - uint64 time_range = 3; - repeated Hash result_ids = 4; + Hash data = 3; + uint64 time_range = 4; + repeated Hash result_ids = 5; + bool side = 6; } message TxVerifyResult { @@ -144,14 +143,3 @@ message Claim { repeated bytes Peginwitness = 5; } -message Dpos { - Hash spent_output_id = 1; - ValueDestination witness_destination = 2; - repeated bytes witness_arguments = 3; - uint64 ordinal = 4; - uint32 type = 5; - string from = 6; - string to = 7; - uint64 stake = 8; - string data = 9; -}