All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.nuls.base.api.provider.block.facade.GetBlockHeaderByHeightReq Maven / Gradle / Ivy

package io.nuls.base.api.provider.block.facade;

import io.nuls.base.api.provider.BaseReq;

/**
 * @Author: zhoulijun
 * @Time: 2019-03-11 09:33
 * @Description:
 * 通过区块高度获取区块头
 * get block header by height
 */
public class GetBlockHeaderByHeightReq extends BaseReq {

    private Long height;

    public GetBlockHeaderByHeightReq(Long height) {
        this.height = height;
    }

    public Long getHeight() {
        return height;
    }

    public void setHeight(Long height) {
        this.height = height;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy