Skip to content

Commit

Permalink
Make IAragonAppFeesCashier payment endpoint payable (#591)
Browse files Browse the repository at this point in the history
Co-authored-by: Brett Sun <qisheng.brett.sun@gmail.com>
  • Loading branch information
ßingen and sohkai committed Jul 3, 2020
1 parent e9f93d9 commit 3c87906
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/lib/arbitration/IAragonAppFeesCashier.sol
Expand Up @@ -12,6 +12,6 @@ interface IAragonAppFeesCashier {
function setAppFees(bytes32[] _appIds, ERC20[] _tokens, uint256[] _amounts) external;
function unsetAppFee(bytes32 _appId) external;
function unsetAppFees(bytes32[] _appIds) external;
function payAppFees(bytes32 _appId, bytes _data) external;
function payAppFees(bytes32 _appId, bytes _data) external payable;
function getAppFee(bytes32 _appId) external view returns (ERC20, uint256);
}

0 comments on commit 3c87906

Please sign in to comment.