replace rpc.md comment

This commit is contained in:
D-Stacks 2022-06-17 17:26:10 +02:00
parent 066c850675
commit a3e3218897
3 changed files with 6 additions and 5 deletions

View File

@ -849,8 +849,8 @@ See: NotifyVirtualSelectedParentChainChangedRequestMessage
| Field | Type | Label | Description |
| ----- | ---- | ----- | ----------- |
| id | [string](#string) | | The chain blocks that were removed, in high-to-low order |
| removedChainBlockHashes | [string](#string) | repeated | |
| id | [string](#string) | | |
| removedChainBlockHashes | [string](#string) | repeated | The chain blocks that were removed, in high-to-low order |
| addedChainBlockHashes | [string](#string) | repeated | The chain blocks that were added, in low-to-high order |
| acceptedTransactionIds | [AcceptedTransactionIds](#protowire.AcceptedTransactionIds) | repeated | Will be filled only if `includeAcceptedTransactionIds = true` in the notify request. |

View File

@ -2683,8 +2683,8 @@ type VirtualSelectedParentChainChangedNotificationMessage struct {
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Id string `protobuf:"bytes,1001,opt,name=id,proto3" json:"id,omitempty"`
// The chain blocks that were removed, in high-to-low order
Id string `protobuf:"bytes,1001,opt,name=id,proto3" json:"id,omitempty"`
RemovedChainBlockHashes []string `protobuf:"bytes,1,rep,name=removedChainBlockHashes,proto3" json:"removedChainBlockHashes,omitempty"`
// The chain blocks that were added, in low-to-high order
AddedChainBlockHashes []string `protobuf:"bytes,3,rep,name=addedChainBlockHashes,proto3" json:"addedChainBlockHashes,omitempty"`

View File

@ -324,8 +324,9 @@ message NotifyVirtualSelectedParentChainChangedResponseMessage{
//
// See: NotifyVirtualSelectedParentChainChangedRequestMessage
message VirtualSelectedParentChainChangedNotificationMessage{
// The chain blocks that were removed, in high-to-low order
string id = 1001;
// The chain blocks that were removed, in high-to-low order
repeated string removedChainBlockHashes = 1;
// The chain blocks that were added, in low-to-high order