Change parseUri to compares with lowercase cryptocoin
This commit is contained in:
parent
73ba419b66
commit
dfca4b8c53
1 changed files with 2 additions and 2 deletions
|
@ -527,9 +527,9 @@ public class GeneralAccountManager implements CryptoAccountManager, CryptoNetInf
|
|||
|
||||
uri.append(address.getAddress());
|
||||
}
|
||||
if(request.getCurrency()!= null){
|
||||
if(request.getAmount() > 0 ){
|
||||
uri.append("?amount=");
|
||||
uri.append(request.getAmount());
|
||||
uri.append(Double.toString(request.getAmount()));
|
||||
}
|
||||
|
||||
System.out.println("GeneralAccountMAnager uri calculated : " + uri.toString());
|
||||
|
|
Loading…
Reference in a new issue