Commit 93fde239 authored by isstuev's avatar isstuev

bigint bug fix

parent 32896734
......@@ -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