You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* A BlockItem is a simple message that contains an id and a value.
92
-
* This specification is a simple example meant to expedite development.
93
-
* It will be replaced with a PBJ implementation in the future.
94
-
*/
95
-
message BlockItem {
96
-
/**
97
-
* The id of the block. Each block id should be unique.
98
-
*/
99
-
int64 id = 1;
100
-
101
-
/**
102
-
* The value of the block. The value can be any string.
103
-
*/
104
-
string value = 2;
105
-
}
106
-
107
-
/**
108
-
* A BlockItemResponse is a simple message that contains an id.
109
-
* The BlockItemResponse is meant to confirm the receipt of a BlockItem.
110
-
* A future use case may expand on this type to communicate a failure
111
-
* condition where the BlockItem needs to be resent, etc.
112
-
*/
113
-
message BlockItemResponse {
114
-
/**
115
-
* The id of the BlockItem which was received.
116
-
*/
117
-
int64 id = 1;
118
-
}
119
-
120
-
```
55
+
The Block Node gRPC Streaming Services API is now aligned with the names and simplified types defined in the
56
+
[`hedera-protobufs` repository on the `continue-block-node` branch](https://github.com/hashgraph/hedera-protobufs/blob/25783427575ded59d06d6bf1ed253fd24ef3c437/block/block_service.proto#L701-L742).
0 commit comments