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

org.bitcoinj.net.Dos Maven / Gradle / Ivy

There is a newer version: 21.0.0
Show newest version
package org.bitcoinj.net;

/**
 * Created by Hash Engineering on 3/8/2018.
 */
public class Dos {
    int value;
    public Dos() {
        this.value = 0;
    }

    public void set(int value) { this.value = value; }
    public int get() { return value; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy