From aa69557d47101ca4be9dcb33eeb995ed21b4b0b1 Mon Sep 17 00:00:00 2001 From: Tim Olson <> Date: Tue, 7 Nov 2023 13:01:05 -0400 Subject: [PATCH] mock coins name change --- test/MockEnv.sol | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/MockEnv.sol b/test/MockEnv.sol index 6b765f9..47a3a91 100644 --- a/test/MockEnv.sol +++ b/test/MockEnv.sol @@ -31,11 +31,11 @@ contract MockEnv { // therefore the sqrt price is 1e-6 // 1000e12 liquidity is put into the pool at each tick spacing for 10 tick spacings to either side of $1 function init() public { - COIN = new MockERC20('Mock Coin', 'MOCK', 18); + COIN = new MockERC20('Mock Ethereum Hardfork', 'MEH', 18); console2.log('COIN'); console2.log(address(COIN)); - USD = new MockERC20('Universally Stable Denomination', 'USD', 6); - console2.log('USD'); + USD = new MockERC20('Joke Fiat XD', 'USXD', 6); + console2.log('USXD'); console2.log(address(USD)); fee = 500; inverted = address(COIN) > address(USD);