Commit 3d3b2515 authored by Igor Stuev's avatar Igor Stuev Committed by GitHub

Merge pull request #1370 from blockscout/fe-1362

bigint bug fix
parents 0dd1019f 93fde239
......@@ -9,7 +9,7 @@ export const getNativeCoinValue = (value: string | Array<unknown>) => {
return BigInt(0);
}
return BigInt(Number(_value));
return BigInt(_value);
};
export const addZeroesAllowed = (valueType: string) => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment