cn.hyperchain.sdk.bvm.operate.params.GenesisInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of litesdk Show documentation
Show all versions of litesdk Show documentation
A Java client tool for Hyperchain
package cn.hyperchain.sdk.bvm.operate.params;
import com.google.gson.annotations.Expose;
import java.util.List;
import java.util.Map;
public class GenesisInfo {
@Expose
private Map genesisAccount;
@Expose
private List genesisNodes;
public GenesisInfo(Map genesisAccount, List genesisNodes) {
this.genesisAccount = genesisAccount;
this.genesisNodes = genesisNodes;
}
public Map getGenesisAccount() {
return genesisAccount;
}
public void setGenesisAccount(Map genesisAccount) {
this.genesisAccount = genesisAccount;
}
public List getGenesisNodes() {
return genesisNodes;
}
public void setGenesisNodes(List genesisNodes) {
this.genesisNodes = genesisNodes;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy