Skip to content

Commit

Permalink
Finance: make fallback external (#404)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickhabets committed Jul 24, 2018
1 parent e83ca7d commit fed8f56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/finance/contracts/Finance.sol
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ contract Finance is AragonApp {
* @dev Sends ETH to Vault. Sends all the available balance.
* @notice Allows to send ETH from this contract to Vault, to avoid locking them in contract forever.
*/
function () isInitialized transitionsPeriod public payable {
function () external payable isInitialized transitionsPeriod {
_recordIncomingTransaction(
ETH,
msg.sender,
Expand Down

0 comments on commit fed8f56

Please sign in to comment.