File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
yarn-project/ethereum/src/contracts Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -63,6 +63,8 @@ describe('Registry', () => {
6363 'stakingAssetHandlerAddress' ,
6464 'zkPassportVerifierAddress' ,
6565 ) ;
66+ // Updating the coin issuer address to the deployer address bc we don't yet set CoinIssuer contract as the owner of the fee asset
67+ deployedAddresses . coinIssuerAddress = EthAddress . fromString ( privateKey . address ) ;
6668 registry = new RegistryContract ( l1Client , deployedAddresses . registryAddress ) ;
6769
6870 const rollup = new RollupContract ( l1Client , deployedAddresses . rollupAddress ) ;
Original file line number Diff line number Diff line change @@ -100,12 +100,12 @@ export class RegistryContract {
100100 abi : TestERC20Abi ,
101101 client,
102102 } ) ;
103- const feeAssetOwner = await feeAsset . read . owner ( ) ;
103+ const coinIssuer = await feeAsset . read . owner ( ) ;
104104 return {
105105 registryAddress : registry . address ,
106106 ...governanceAddresses ,
107107 ...addresses ,
108- coinIssuerAddress : EthAddress . fromString ( feeAssetOwner ) ,
108+ coinIssuerAddress : EthAddress . fromString ( coinIssuer ) ,
109109 } ;
110110 }
111111
You can’t perform that action at this time.
0 commit comments