【发布时间】:2022-11-18 00:06:13
【问题描述】:
我最近遇到了以下 Solidity 函数:
function testHealthFactor() public {
(, , , , , uint256 healthFactor) = ILendingPool(lendingPool).getUserAccountData(user);
console.log("health factor", healthFactor);
assertEq(healthFactor < 1 ether, true);
}
我对Solidity还不够了解,所以我想知道那5个逗号序列的挖掘是什么?
【问题讨论】:
标签: solidity