Closed samlinux closed 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)
_
_daily
from let daily = Timer.recurringTimer(#nanoseconds(nanosecondsPerDay), _kill);
to
let _ = Timer.recurringTimer(#nanoseconds(nanosecondsPerDay), _kill);
Thanks Roland, I moved the user-canister repository but I took into account your recommendation.
https://github.com/motoko-bootcamp/you
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);