io.horizen.AppForkConfigurator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sidechains-sdk-account_sctools Show documentation
Show all versions of sidechains-sdk-account_sctools Show documentation
This module offers a way to create a sidechain's configuration file and some utilities (account model).
package io.horizen;
import io.horizen.fork.ForkConfigurator;
import io.horizen.fork.SidechainForkConsensusEpoch;
public class AppForkConfigurator extends ForkConfigurator {
@Override
public SidechainForkConsensusEpoch fork1activation() {
return new SidechainForkConsensusEpoch(0, 0, 0);
}
}