The SyncChainMMr block range start is treated as exclusive, but the proto docs are confusing:
|
message SyncChainMmrRequest { |
|
// Block number from which to synchronize (inclusive). Set this to the last block |
|
// already present in the caller's MMR so the delta begins at the next block. |
|
fixed32 block_from = 1; |
We should change the implementation so it's effectively inclusive, and aligned with the rest of the endpoints.
The
SyncChainMMrblock range start is treated as exclusive, but the proto docs are confusing:node/proto/proto/rpc.proto
Lines 510 to 513 in 39f19f1
We should change the implementation so it's effectively inclusive, and aligned with the rest of the endpoints.