forked from Qortal-Forker/qortal
the message types were corrected
This commit is contained in:
@@ -25,7 +25,7 @@ public class ForeignFeesMessage extends Message {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private ForeignFeesMessage(int id, List<ForeignFeeDecodedData> foreignFees) {
|
private ForeignFeesMessage(int id, List<ForeignFeeDecodedData> foreignFees) {
|
||||||
super(id, MessageType.ONLINE_ACCOUNTS_V3);
|
super(id, MessageType.FOREIGN_FEES);
|
||||||
|
|
||||||
this.foreignFees = foreignFees;
|
this.foreignFees = foreignFees;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ public class GetForeignFeesMessage extends Message {
|
|||||||
private final List<ForeignFeeDecodedData> foreignFeeDecodedData;
|
private final List<ForeignFeeDecodedData> foreignFeeDecodedData;
|
||||||
|
|
||||||
public GetForeignFeesMessage(List<ForeignFeeDecodedData> foreignFeeDecodedData) {
|
public GetForeignFeesMessage(List<ForeignFeeDecodedData> foreignFeeDecodedData) {
|
||||||
super(MessageType.GET_ONLINE_ACCOUNTS_V3);
|
super(MessageType.GET_FOREIGN_FEES);
|
||||||
|
|
||||||
this.foreignFeeDecodedData = foreignFeeDecodedData;
|
this.foreignFeeDecodedData = foreignFeeDecodedData;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user