mock coins name change

This commit is contained in:
Tim Olson
2023-11-07 13:01:05 -04:00
parent 97b95e7ba3
commit aa69557d47

View File

@@ -31,11 +31,11 @@ contract MockEnv {
// therefore the sqrt price is 1e-6 // 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 // 1000e12 liquidity is put into the pool at each tick spacing for 10 tick spacings to either side of $1
function init() public { function init() public {
COIN = new MockERC20('Mock Coin', 'MOCK', 18); COIN = new MockERC20('Mock Ethereum Hardfork', 'MEH', 18);
console2.log('COIN'); console2.log('COIN');
console2.log(address(COIN)); console2.log(address(COIN));
USD = new MockERC20('Universally Stable Denomination', 'USD', 6); USD = new MockERC20('Joke Fiat XD', 'USXD', 6);
console2.log('USD'); console2.log('USXD');
console2.log(address(USD)); console2.log(address(USD));
fee = 500; fee = 500;
inverted = address(COIN) > address(USD); inverted = address(COIN) > address(USD);