我试图在业力测试中做一些气体交易成本计算以断言最终余额,我无法理解为什么这两个代码片段的输出是不同的
顺序变量的值为:
59916559960000000000 3000000000000000000 394980000000000
这些片段是:
let currentBalance = web3.utils.fromWei(customerBalance.toString(), 'ether')
+ web3.utils.fromWei(customerRefundableEther.toString(), 'ether')
- web3.utils.fromWei(transactionFee.toString(), 'ether');
let currentBalance = (customerBalance / 1e18)
+(customerRefundableEther / 1e18)
- (transactionFee / 1e18);
第二个代码段是用户帐户的正确余额,并且断言成功。不是从wei到ether的转换:value / 1e18?。我无法理解为什么,但这些片段之间的差异超过3个以太单位。
我正在使用web3版本1.0.0-beta26。
提前谢谢。
答案 0 :(得分:2)
我认为问题是web3.utils.fromWei
返回一个字符串,+
表示字符串执行连接。
也许只做web3.utils.fromWei(customerBalance + customerRefundableEther - transactionFee, 'ether')
?
修改强>
似乎可能customerBalance
等。是BigNumber
个实例。在那种情况下:
web3.utils.fromWei(customerBalance.add(customerRefundableEther)
.sub(transactionFee).toString(), 'ether')
编辑2
使用数字编码代码:
> const customerBalance = 59916559960000000000;
> const customerRefundableEther = 3000000000000000000;
> const transactionFee = 394980000000000;
> web3.utils.fromWei((customerBalance + customerRefundableEther - transactionFee).toString(), 'ether');
62.91616498000001
使用字符串处理代码,以防问题是它们以字符串开头:
> const customerBalance = '59916559960000000000';
> const customerRefundableEther = '3000000000000000000';
> const transactionFee = '394980000000000';
> web3.utils.fromWei(web3.utils.toBN(customerBalance).add(web3.utils.toBN(customerRefundableEther)).sub(web3.utils.toBN(transactionFee)), 'ether')
'62.91616498'