(dividend)
| 684 | } |
| 685 | |
| 686 | function hasRemaining(dividend) { |
| 687 | return Number(new web3.utils.BN(dividend.amount).sub(new web3.utils.BN(dividend.claimedAmount))).toFixed(10) > 0; |
| 688 | } |
| 689 | |
| 690 | function hasRemainingWithheld(dividend) { |
| 691 | return Number(new web3.utils.BN(dividend.dividendWithheld).sub(new web3.utils.BN(dividend.dividendWithheldReclaimed))).toFixed(10) > 0; |
no outgoing calls
no test coverage detected