keep-starknet-strange / shinigami

Bitcoin Script VM in Cairo
https://shinigamibtc.dev
MIT License
57 stars 56 forks source link

[dev] [optimization] 'while i < data.len()' to 'let data_len = data.len()' #208

Closed b-j-roberts closed 1 week ago

b-j-roberts commented 1 month ago

To optimize shinigami, we should be using let data_len = data.len(); while i < data_len instead of while i < data.len() when doing loops over a range. So for each instance in the code where a while i < data.len() type loop is used, if possible, we should change them to use let data_len = data.len(); while i < data_len.

References

Example of location to optimize in the code

Iwueseiter commented 1 month ago

Hi @b-j-roberts can I work on this?

onlydustapp[bot] commented 1 month ago

Hey @Iwueseiter! Thanks for showing interest. We've created an application for you to contribute to shinigami. Go check it out on OnlyDust!

raizo07 commented 1 month ago

@b-j-roberts can I work on this

onlydustapp[bot] commented 1 month ago

Hey @raizo07! Thanks for showing interest. We've created an application for you to contribute to shinigami. Go check it out on OnlyDust!

Gift-Naomi commented 1 month ago

@b-j-roberts can I work on this?

onlydustapp[bot] commented 1 month ago

Hey @Gift-Naomi! Thanks for showing interest. We've created an application for you to contribute to shinigami. Go check it out on OnlyDust!

manlikeHB commented 1 month ago

can i work on this?

onlydustapp[bot] commented 1 month ago

Hey @manlikeHB! Thanks for showing interest. We've created an application for you to contribute to shinigami. Go check it out on OnlyDust!

ShantelPeters commented 1 month ago

I will like to work on this

onlydustapp[bot] commented 1 month ago

Hey @ShantelPeters! Thanks for showing interest. We've created an application for you to contribute to shinigami. Go check it out on OnlyDust!

b-j-roberts commented 1 month ago

@b-j-roberts can I work on this?

Yes, I will assign you and check back in a couple days. Please lmk if you have any questions

b-j-roberts commented 1 month ago

@Gift-Naomi Assigned 🚀