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

com.jd.blockchain.consensus.ConsensusSettings Maven / Gradle / Ivy

There is a newer version: 1.6.5.RELEASE
Show newest version
package com.jd.blockchain.consensus;

import com.jd.blockchain.binaryproto.DataContract;
import com.jd.blockchain.binaryproto.DataField;
import com.jd.blockchain.consts.DataCodes;

/**
 * 共识网络的配置参数;
 * 
 * @author huanghaiquan
 *
 */
@DataContract(code = DataCodes.CONSENSUS_SETTINGS)
public interface ConsensusSettings {

	/**
	 * 共识网络中的节点列表;
	 * 
	 * @return
	 */
	@DataField(order = 0, refContract = true, list = true, genericContract = true)
	NodeSettings[] getNodes();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy