Skip to content

Commit

Permalink
liquidations update (#1604)
Browse files Browse the repository at this point in the history
* use issuer with liquidations

* remove issuance without liquidations

* fix oopses

* remove full source line
  • Loading branch information
dbeal-eth authored Nov 22, 2021
1 parent d661119 commit 856e74a
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 19 deletions.
1 change: 0 additions & 1 deletion .solcover.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ module.exports = {
'legacy',
'EscrowChecker.sol',
'ExchangeRatesWithoutInvPricing.sol',
'IssuerWithoutLiquidations.sol',
'EmptyEtherWrapper.sol',
],
providerOptions: {
Expand Down
15 changes: 0 additions & 15 deletions contracts/IssuerWithoutLiquidations.sol

This file was deleted.

1 change: 0 additions & 1 deletion hardhat/tasks/task-status/statusActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,6 @@ const actions = {

const Issuer = getContract({
contract: 'Issuer',
source: useOvm ? 'IssuerWithoutLiquidations' : 'Issuer',
network,
useOvm,
provider,
Expand Down
2 changes: 1 addition & 1 deletion publish/releases.json
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@
"layer": "both",
"sources": {
"base": ["SystemSettings", "OwnerRelayOnEthereum"],
"ovm": ["OwnerRelayOnOptimism"]
"ovm": ["OwnerRelayOnOptimism", "Issuer"]
}
},
{
Expand Down
1 change: 0 additions & 1 deletion publish/src/commands/deploy/deploy-core.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,6 @@ module.exports = async ({

await deployer.deployContract({
name: 'Issuer',
source: useOvm ? 'IssuerWithoutLiquidations' : 'Issuer',
deps: ['AddressResolver'],
args: [account, addressOf(readProxyForResolver)],
});
Expand Down

0 comments on commit 856e74a

Please sign in to comment.