You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During the development of the initial implementation of 0L. Work was done quickly to meet deadlines and because of this .unwrap() was used in some instances to speed up development. These need to be cleaned up.
What needs to be done?
Go through the /ol/devnet folder in the root and remove instances of .unwrap() by refactoring the code and adding a match statement. This may include refactoring of related files that the code is coupled to.
The idea behind this issue is to create manageable first tasks for relatively novice prospective developers looking to learn more about Rust and 0L. Not all of the unwraps will need to be refactored and part of the exercise is determining if the .unwraps() could be refactored or if they are already best practice depending on the situation
The text was updated successfully, but these errors were encountered:
Bounty - 2000 GAS
What is the issue
During the development of the initial implementation of 0L. Work was done quickly to meet deadlines and because of this
.unwrap()
was used in some instances to speed up development. These need to be cleaned up.What needs to be done?
/ol/devnet
folder in the root and remove instances of.unwrap()
by refactoring the code and adding a match statement. This may include refactoring of related files that the code is coupled to.Intention
This issue is part of the Tool Scrubbers Guild
The idea behind this issue is to create manageable first tasks for relatively novice prospective developers looking to learn more about Rust and 0L. Not all of the unwraps will need to be refactored and part of the exercise is determining if the
.unwraps()
could be refactored or if they are already best practice depending on the situationThe text was updated successfully, but these errors were encountered: