Created
April 15, 2022 17:49
-
-
Save transmissions11/f6885ae34c4ab4c6142494a4677b44db to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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