Skip to content

Commit

Permalink
Merge pull request #83 from bloxbean/issue_82
Browse files Browse the repository at this point in the history
chore: #82 fix issue during deserialising gov state query result
  • Loading branch information
Sotatek-HuyLe3a authored Sep 19, 2024
2 parents a966b05 + 53b8bc4 commit 7abf7ba
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -497,6 +497,9 @@ public List<GovActionId> deserializeGovActionIdListResult(DataItem govActionsDI)

Array govActionsArray = (Array) govActionsDI;
for (DataItem item : govActionsArray.getDataItems()) {
if (item == SimpleValue.BREAK) {
continue;
}
govActionIds.add(deserializeGovActionIdResult(item));
}

Expand Down

0 comments on commit 7abf7ba

Please sign in to comment.