From e3803d9cdbb71c97d02823ac7da278f0c3ca1040 Mon Sep 17 00:00:00 2001 From: Quentin Garchery Date: Tue, 5 Mar 2024 11:32:45 +0100 Subject: [PATCH] style: a couple text instance to rename --- README.md | 2 +- test/hardhat/EthereumBundler.spec.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4e5470f8..ed9343ba 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Each Bundler is a domain-specific abstract layer of contract that implements som Some chain-specific domains are also scoped to the chain-specific folder, because they are not expected to be used on any other chain (e.g. DAI and its specific `permit` function is only available on Ethereum - see [`EthereumPermitBundler`](./src/ethereum/EthereumPermitBundler.sol)). -User-end bundlers are provided in each chain-specific folder, instanciating all the intermediary domain-specific bundlers and associated parameters (such as chain-specific protocol addresses, e.g. [`EthereumBundler`](./src/ethereum/EthereumBundler.sol)). +User-end bundlers are provided in each chain-specific folder, instanciating all the intermediary domain-specific bundlers and associated parameters (such as chain-specific protocol addresses, e.g. [`EthereumBundlerV2`](./src/ethereum/EthereumBundlerV2.sol)). ## Getting Started diff --git a/test/hardhat/EthereumBundler.spec.ts b/test/hardhat/EthereumBundler.spec.ts index a7260d0e..3a672a23 100644 --- a/test/hardhat/EthereumBundler.spec.ts +++ b/test/hardhat/EthereumBundler.spec.ts @@ -240,7 +240,7 @@ describe("EthereumBundler", () => { hre.tracer.nameTags[loanAddress] = "Loan"; hre.tracer.nameTags[oracleAddress] = "Oracle"; hre.tracer.nameTags[irmAddress] = "AdaptiveCurveIrm"; - hre.tracer.nameTags[bundlerAddress] = "EthereumBundler"; + hre.tracer.nameTags[bundlerAddress] = "EthereumBundlerV2"; }); it("should simulate gas cost [morpho-supplyCollateral+borrow]", async () => {