forked from Qortal/qortal
Include AT address in /trades API call.
Include Seller Qortal address in /trades API call. Include Buyer Qortal Receiving address in /trades API call.
This commit is contained in:
parent
bbe3a30e77
commit
7153ed022c
@ -25,6 +25,12 @@ public class CrossChainTradeSummary {
|
|||||||
@XmlJavaTypeAdapter(value = org.qortal.api.AmountTypeAdapter.class)
|
@XmlJavaTypeAdapter(value = org.qortal.api.AmountTypeAdapter.class)
|
||||||
private long foreignAmount;
|
private long foreignAmount;
|
||||||
|
|
||||||
|
private String atAddress;
|
||||||
|
|
||||||
|
private String sellerAddress;
|
||||||
|
|
||||||
|
private String buyerReceivingAddress;
|
||||||
|
|
||||||
protected CrossChainTradeSummary() {
|
protected CrossChainTradeSummary() {
|
||||||
/* For JAXB */
|
/* For JAXB */
|
||||||
}
|
}
|
||||||
@ -34,6 +40,9 @@ public class CrossChainTradeSummary {
|
|||||||
this.qortAmount = crossChainTradeData.qortAmount;
|
this.qortAmount = crossChainTradeData.qortAmount;
|
||||||
this.foreignAmount = crossChainTradeData.expectedForeignAmount;
|
this.foreignAmount = crossChainTradeData.expectedForeignAmount;
|
||||||
this.btcAmount = this.foreignAmount;
|
this.btcAmount = this.foreignAmount;
|
||||||
|
this.sellerAddress = crossChainTradeData.qortalCreator;
|
||||||
|
this.buyerReceivingAddress = crossChainTradeData.qortalPartnerReceivingAddress;
|
||||||
|
this.atAddress = crossChainTradeData.qortalAtAddress;
|
||||||
}
|
}
|
||||||
|
|
||||||
public long getTradeTimestamp() {
|
public long getTradeTimestamp() {
|
||||||
@ -48,7 +57,11 @@ public class CrossChainTradeSummary {
|
|||||||
return this.btcAmount;
|
return this.btcAmount;
|
||||||
}
|
}
|
||||||
|
|
||||||
public long getForeignAmount() {
|
public long getForeignAmount() { return this.foreignAmount; }
|
||||||
return this.foreignAmount;
|
|
||||||
}
|
public String getAtAddress() { return this.atAddress; }
|
||||||
|
|
||||||
|
public String getSellerAddress() { return this.sellerAddress; }
|
||||||
|
|
||||||
|
public String getBuyerReceivingAddressAddress() { return this.buyerReceivingAddress; }
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user