Skip to content

Commit 816d393

Browse files
author
Paul Gebheim
committed
Revert "Whitelist contracts"
This reverts commit d14e1c7.
1 parent 43a2189 commit 816d393

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

source/libraries/ContractDeployer.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export class ContractDeployer {
3232
this.controller = await this.uploadController();
3333
await this.uploadAugur();
3434
await this.uploadAllContracts();
35-
await this.initializeAllContracts();
35+
await this.initializeAllContracts();
3636
await this.whitelistTradingContracts();
3737

3838
if(this.configuration.createGenesisUniverse) {
@@ -243,7 +243,6 @@ export class ContractDeployer {
243243
if (this.contracts.get('Augur').address === undefined) throw new Error(`Augur not uploaded.`);
244244
mapping['Augur'] = this.contracts.get('Augur').address!;
245245
mapping['LegacyReputationToken'] = this.contracts.get('LegacyReputationToken').address!;
246-
mapping['Mailbox'] = this.contracts.get('Mailbox').address!;
247246
for (let contract of this.contracts) {
248247
if (!contract.relativeFilePath.startsWith('trading/')) continue;
249248
if (/^I[A-Z].*/.test(contract.contractName)) continue;

0 commit comments

Comments
 (0)