motoko-bootcamp / reboot

Can we self-organize?
https://www.openinternetsummer.com/
6 stars 5 forks source link

unused identifier daily #3

Closed samlinux closed 5 months ago

samlinux commented 5 months ago

I know there is no claim to perfection but the following could easily be avoided.

/Users/rbole/Sites/ois/reboot/src/user/main.mo:30.9-30.14: warning [M0194], unused identifier daily (delete or rename to wildcard _ or _daily)

from let daily = Timer.recurringTimer(#nanoseconds(nanosecondsPerDay), _kill);

to

let _ = Timer.recurringTimer(#nanoseconds(nanosecondsPerDay), _kill);

seb-icp commented 5 months ago

Thanks Roland, I moved the user-canister repository but I took into account your recommendation.

seb-icp commented 5 months ago

https://github.com/motoko-bootcamp/you