diff --git a/Tools/BiblioTech/Commands/MintCommand.cs b/Tools/BiblioTech/Commands/MintCommand.cs index 82bc8373..93e14e7d 100644 --- a/Tools/BiblioTech/Commands/MintCommand.cs +++ b/Tools/BiblioTech/Commands/MintCommand.cs @@ -153,7 +153,7 @@ namespace BiblioTech.Commands private bool IsEthBalanceOverLimit(IGethNode gethNode, EthAddress addr) { var eth = gethNode.GetEthBalance(addr); - return ((decimal)eth.Eth) > Program.Config.SendEth; + return eth > Program.Config.SendEth.Eth(); } private bool IsTestTokenBalanceOverLimit(ICodexContracts contracts, EthAddress addr)