Skip to content

Commit

Permalink
Update Decode Bigint
Browse files Browse the repository at this point in the history
  • Loading branch information
leej1012 committed Jan 6, 2025
1 parent 5ff6f3b commit 1b3632c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -522,8 +522,8 @@ private Map<String, Object> decodeDataByType(String type, String arg, boolean is
break;
case "Uint64":
case "BigInt":
data = Helper.parseInputDataNumber(arg, isNative);
BigInteger number = (BigInteger) data;
BigInteger number = Helper.parseInputDataNumber(arg, isNative);
data = number.toString();
if (isNative) {
BigInteger rawNumber;
int value = number.intValue();
Expand Down

0 comments on commit 1b3632c

Please sign in to comment.