Skip to content

Commit

Permalink
Merge pull request #21 from sprotest/feature/fix-invalid-charachter
Browse files Browse the repository at this point in the history
fix invalid character, updates in BN lib
  • Loading branch information
tafonina authored Nov 3, 2023
2 parents 1d8af13 + e1ac271 commit 11f7378
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ui/wallet/src/ProxeusEthereum/MetamaskUtil.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ class MetamaskUtil {
gwei: '1000000000',
szabo: '1000000',
finney: '1000',
ether: '1',
kether: '0.001',
mether: '0.000001',
gether: '0.000000001',
tether: '0.000000000001'
ether: 1,
kether: 0.001,
mether: 0.000001,
gether: 0.000000001,
tether: 0.000000000001
}
this.multiple = new this.ethUtil.BN('10000', 10)

Expand Down

0 comments on commit 11f7378

Please sign in to comment.