Fixing bug that made the GetRelativeAccountHistory class fail
This commit is contained in:
parent
50fc2d805e
commit
83ffdd70f7
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ public class GetRelativeAccountHistory extends BaseGrapheneHandler {
|
||||||
*/
|
*/
|
||||||
private void sendRelativeAccountHistoryRequest(){
|
private void sendRelativeAccountHistoryRequest(){
|
||||||
ArrayList<Serializable> params = new ArrayList<>();
|
ArrayList<Serializable> params = new ArrayList<>();
|
||||||
params.add(mUserAccount.toJsonString());
|
params.add(mUserAccount.getObjectId());
|
||||||
params.add(this.stop);
|
params.add(this.stop);
|
||||||
params.add(this.limit);
|
params.add(this.limit);
|
||||||
params.add(this.start);
|
params.add(this.start);
|
||||||
|
|
Loading…
Reference in a new issue