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

io.horizen.AccountModel Maven / Gradle / Ivy

Go to download

This module offers a way to create a sidechain's configuration file and some utilities (account model).

There is a newer version: 0.12.0
Show newest version
package io.horizen;

import io.horizen.account.state.MessageProcessor;
import io.horizen.fork.ForkConfigurator;
import io.horizen.params.NetworkParams;

import java.util.ArrayList;
import java.util.List;

public class AccountModel extends AbstractAccountModel {
    @Override
    protected List getCustomMessageProcessors(NetworkParams params) {
        List customMessageProcessors = new ArrayList<>();
        return customMessageProcessors;
    }

    @Override
    public ForkConfigurator getForkConfigurator() {
        return new AppForkConfigurator();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy