remove cryptocoin parameter
This commit is contained in:
parent
3aa57e6ca5
commit
ea63139809
2 changed files with 6 additions and 6 deletions
|
@ -18,10 +18,10 @@ public class ValidateBitsharesSendRequest extends CryptoNetInfoRequest {
|
||||||
|
|
||||||
private Boolean isSend;
|
private Boolean isSend;
|
||||||
|
|
||||||
public ValidateBitsharesSendRequest(CryptoCoin coin, String sourceAccount, String toAccount,
|
public ValidateBitsharesSendRequest(String sourceAccount, String toAccount,
|
||||||
long baseAmount, String baseAsset, long feeAmount,
|
long baseAmount, String baseAsset, long feeAmount,
|
||||||
String feeAsset, String memo) {
|
String feeAsset, String memo) {
|
||||||
super(coin);
|
super(CryptoCoin.BITSHARES);
|
||||||
this.mSourceAccount = sourceAccount;
|
this.mSourceAccount = sourceAccount;
|
||||||
this.mToAccount = toAccount;
|
this.mToAccount = toAccount;
|
||||||
this.mBaseAmount = baseAmount;
|
this.mBaseAmount = baseAmount;
|
||||||
|
@ -31,10 +31,10 @@ public class ValidateBitsharesSendRequest extends CryptoNetInfoRequest {
|
||||||
this.mMemo = memo;
|
this.mMemo = memo;
|
||||||
}
|
}
|
||||||
|
|
||||||
public ValidateBitsharesSendRequest(CryptoCoin coin, String sourceAccount, String toAccount,
|
public ValidateBitsharesSendRequest(String sourceAccount, String toAccount,
|
||||||
long baseAmount, String baseAsset, long feeAmount,
|
long baseAmount, String baseAsset, long feeAmount,
|
||||||
String feeAsset) {
|
String feeAsset) {
|
||||||
this(coin,sourceAccount,toAccount,baseAmount,baseAsset,feeAmount,feeAsset,null);
|
this(sourceAccount,toAccount,baseAmount,baseAsset,feeAmount,feeAsset,null);
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getSourceAccount() {
|
public String getSourceAccount() {
|
||||||
|
|
|
@ -15,8 +15,8 @@ public class ValidateExistBitsharesAccountRequest extends CryptoNetInfoRequest {
|
||||||
// The result of the validation, or null if there isn't a response
|
// The result of the validation, or null if there isn't a response
|
||||||
private Boolean accountExists;
|
private Boolean accountExists;
|
||||||
|
|
||||||
public ValidateExistBitsharesAccountRequest(CryptoCoin coin, String accountName) {
|
public ValidateExistBitsharesAccountRequest(String accountName) {
|
||||||
super(coin);
|
super(CryptoCoin.BITSHARES);
|
||||||
this.accountName = accountName;
|
this.accountName = accountName;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue