Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save transmissions11/f6885ae34c4ab4c6142494a4677b44db to your computer and use it in GitHub Desktop.
Save transmissions11/f6885ae34c4ab4c6142494a4677b44db to your computer and use it in GitHub Desktop.
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.8.0;
contract Test {
mapping(uint256 => uint256) public a;
mapping(uint256 => uint256) public b;
function test1() public {
b[0]++;
b[0]--;
}
function test2() public {
a[0]++;
a[0]--;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment