Advertisement
Guest User

Untitled

a guest
Jul 24th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. /*
  2. * Hubii Nahmii
  3. *
  4. * Compliant with the Hubii Nahmii specification v0.12.
  5. *
  6. * Copyright (C) 2017-2018 Hubii AS
  7. */
  8.  
  9. pragma solidity >=0.4.25 <0.6.0;
  10. pragma experimental ABIEncoderV2;
  11.  
  12. import {Beneficiary} from "./Beneficiary.sol";
  13. import {MonetaryTypesLib} from "./MonetaryTypesLib.sol";
  14.  
  15. /**
  16. * @title AccrualBeneficiary
  17. * @notice A beneficiary of accruals
  18. */
  19. contract AccrualBeneficiary is Beneficiary {
  20. //
  21. // Functions
  22. // -----------------------------------------------------------------------------------------------------------------
  23. event CloseAccrualPeriodEvent();
  24.  
  25. //
  26. // Functions
  27. // -----------------------------------------------------------------------------------------------------------------
  28. function closeAccrualPeriod(MonetaryTypesLib.Currency[] memory)
  29. public
  30. {
  31. emit CloseAccrualPeriodEvent();
  32. }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement