mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-06-20 12:54:37 -04:00
payment to MS fund
This commit is contained in:
parent
7d0676a995
commit
a4efa29bcd
37 changed files with 1081 additions and 546 deletions
|
@ -1,6 +1,7 @@
|
|||
package io.bitsquare.user;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigInteger;
|
||||
|
||||
public class Arbitrator implements Serializable
|
||||
{
|
||||
|
@ -11,13 +12,22 @@ public class Arbitrator implements Serializable
|
|||
private String messageID;
|
||||
private String url;
|
||||
|
||||
public Arbitrator(String name, String pubKey, String messageID, String url)
|
||||
{
|
||||
|
||||
private double baseFeePercent;
|
||||
private double arbitrationFeePercent;
|
||||
private BigInteger minArbitrationFee;
|
||||
private String uid;
|
||||
|
||||
public Arbitrator(String uid, String name, String pubKey, String messageID, String url, double baseFeePercent, double arbitrationFeePercent, BigInteger minArbitrationFee)
|
||||
{
|
||||
this.uid = uid;
|
||||
this.name = name;
|
||||
this.pubKey = pubKey;
|
||||
this.messageID = messageID;
|
||||
this.url = url;
|
||||
this.baseFeePercent = baseFeePercent;
|
||||
this.arbitrationFeePercent = arbitrationFeePercent;
|
||||
this.minArbitrationFee = minArbitrationFee;
|
||||
}
|
||||
|
||||
|
||||
|
@ -45,4 +55,23 @@ public class Arbitrator implements Serializable
|
|||
return url;
|
||||
}
|
||||
|
||||
public BigInteger getMinArbitrationFee()
|
||||
{
|
||||
return minArbitrationFee;
|
||||
}
|
||||
|
||||
public double getBaseFeePercent()
|
||||
{
|
||||
return baseFeePercent;
|
||||
}
|
||||
|
||||
public double getArbitrationFeePercent()
|
||||
{
|
||||
return arbitrationFeePercent;
|
||||
}
|
||||
|
||||
public Object getUID()
|
||||
{
|
||||
return uid;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue