Layer 227
constructor
updateGroupCallChainBlocks#a477288f call:InputGroupCall sub_chain_id:int blocks:Vector<bytes> next_offset:int = Update;

Parameters

Name Type Description
Call InputGroupCall Conference whose specified subchain received these blocks
SubChainId int 0 for the main state blockchain, 1 for the call verification subchain
Blocks Vector < bytes > Serialized subchain blocks with the server-adjusted constructor IDs described in the subchain documentation
NextOffset int Height of the block located after the last block in blocks; the first returned block has height next_offset - blocks. length

Returns

Update

Gogram Example

// Creating UpdateGroupCallChainBlocks constructor
obj := &tg.UpdateGroupCallChainBlocks{
    Call: &tg.InputGroupCall{},
    SubChainId: 42,
    Blocks: &tg.VectorBytes{},
    NextOffset: 42,
}