Once after the new Account is activated Tells Vault when to call the scheduled_code hook and what events to notify it of
xxxxxxxxxx
def execution_schedules():
return [('ACCRUE_INTEREST', {'hour': '00', 'minute': '00', 'second': '00'})]
@requires(event_type='ACCRUE_INTEREST', parameters=True, balances='1 day')
def scheduled_code(event_type, effective_date):
if event_type == 'ACCRUE_INTEREST':
_accrue_interest(vault, effective_date)