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
does allocate memory at global scope. Over many packages, that can build up to a few kilo bytes used for no reason.
We can batch replace these with:
var_MyInterface= (*MyStruct)(nil)
⚠️ Don't modify upstream geth code!
We can use the regex _ [A-Za-z].*[ ]+=[ ]+&[A-Za-z].*\{\} to find all of them and replace them manually one by one. There are only around 40 of them as of today.
The text was updated successfully, but these errors were encountered:
does allocate memory at global scope. Over many packages, that can build up to a few kilo bytes used for no reason.
We can batch replace these with:
We can use the regex
_ [A-Za-z].*[ ]+=[ ]+&[A-Za-z].*\{\}
to find all of them and replace them manually one by one. There are only around 40 of them as of today.The text was updated successfully, but these errors were encountered: