@@ -437,7 +437,7 @@ fun setupUniswapV2(_ signer: Test.TestAccount, feeToSetter: String, wflowAddress
437437 let wflowAddr = EVM .addressFromString (wflowAddress )
438438 // deploy uniV2Factory, concatenating feeToSetter as constructor arg
439439 let factoryArgsBytecode = EVM .encodeABI ([feeToSetter ])
440- let factoryDeployResult = evmDeploy (signer ,
440+ let _factoryDeployResult = evmDeploy (signer ,
441441 bytecode : String.encodeHex (uniV2FactoryBytecode .decodeHex ().concat (factoryArgsBytecode )),
442442 gasLimit : 15_000_000 ,
443443 value : 0
@@ -447,7 +447,7 @@ fun setupUniswapV2(_ signer: Test.TestAccount, feeToSetter: String, wflowAddress
447447 let factoryAddr = EVM .addressFromString (getEVMAddressHexFromEvents (txnEvents , idx : txnEvents .length - 1 ))
448448 // deploy uniV2Router, concatenating the factory and WFLOW addresses as constructor args
449449 let routerArgsBytecode = EVM .encodeABI ([factoryAddr , wflowAddr ])
450- let routerDeployResult = evmDeploy (signer ,
450+ let _routerDeployResult = evmDeploy (signer ,
451451 bytecode : String.encodeHex (uniV2RouterBytecode .decodeHex ().concat (routerArgsBytecode )),
452452 gasLimit : 15_000_000 ,
453453 value : 0
@@ -461,7 +461,7 @@ access(all)
461461fun deployBasicERC20 (_ signer : Test .TestAccount , name : String , symbol : String ): String {
462462 let constructorArgs = EVM .encodeABI ([name , symbol ])
463463 // deploy BasicERC20
464- let deployResult = evmDeploy (signer ,
464+ let _deployResult = evmDeploy (signer ,
465465 bytecode : String.encodeHex (basicERC20Bytecode .decodeHex ().concat (constructorArgs )),
466466 gasLimit : 15_000_000 ,
467467 value : 0
0 commit comments