Skip to content

Commit

Permalink
Merge pull request #258 from gobitfly/BIDS-2625/unify_rpl_rounding
Browse files Browse the repository at this point in the history
Unify RPL rounding
  • Loading branch information
manuelsc authored Nov 6, 2023
2 parents 92ee372 + 125276d commit 4d9209b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/utils/EthereumUnits.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default class Unit {

public static ETHER = new Unit('ETH', new BigNumber('1'), 5, 'XXX-ETH', 'Ether')
public static KETHER = new Unit('KETH', new BigNumber('0.001'))
public static RPL = new Unit('RPL', new BigNumber('1'), 1) // RPL TO ETH
public static RPL = new Unit('RPL', new BigNumber('1'), 2) // RPL TO ETH
public static RPL_NAKED = new Unit('RPL', new BigNumber('1'), 2)
public static NO_CURRENCY = new Unit('', new BigNumber('1'), 0)
public static RETH = new Unit('RETH', new BigNumber('1'), 2)
Expand Down

0 comments on commit 4d9209b

Please sign in to comment.