tokenbridge-contracts icon indicating copy to clipboard operation
tokenbridge-contracts copied to clipboard

Update ERC677MultiBridgeToken.sol

Open 0xScratch opened this issue 1 year ago • 0 comments

Made 2 changes in this particular file:

1st: changed uint256 counter = 0; to uint256 counter; , cuz default value of any variable if it's a uint used to be 0, It's just a waste of gas to initialize it with 0. Believe it or not, this do save some amount of gas.

2nd: into -> in, just a grammatical fix

Thanks!

0xScratch avatar Sep 01 '23 17:09 0xScratch