(_from, _to, _allowance, _expiryTime, _description)
| 814 | |
| 815 | async function getApprovals() { |
| 816 | function ApprovalDetail(_from, _to, _allowance, _expiryTime, _description) { |
| 817 | this.from = _from; |
| 818 | this.to = _to; |
| 819 | this.allowance = _allowance; |
| 820 | this.expiryTime = _expiryTime; |
| 821 | this.description = _description; |
| 822 | } |
| 823 | |
| 824 | let results = []; |
| 825 | let approvalDetails = await currentTransferManager.methods.getAllApprovals().call(); |
nothing calls this directly
no outgoing calls
no test coverage detected