From 07441276fc8bc4d86e56ff300f620c168959c8ed Mon Sep 17 00:00:00 2001 From: Maria Kotsifakou Date: Wed, 6 Nov 2024 13:33:56 -0600 Subject: [PATCH] Modified byol_solidity_py to use non renamed version of USDC mock. --- byol_solidity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/byol_solidity.py b/byol_solidity.py index 80ef2bc..5ec5c58 100755 --- a/byol_solidity.py +++ b/byol_solidity.py @@ -3,7 +3,7 @@ from web3.middleware import SignAndSendRawMiddlewareBuilder import time -simple_usdc_hex = open('test/demo-contracts/UniswapV2SwapRenamed.USDC.kore.bin').read().rstrip() +simple_usdc_hex = open('test/demo-contracts/USDCMock.kore.bin').read().rstrip() w3 = Web3(Web3.HTTPProvider('http://localhost:8545')) sender = w3.eth.account.create()