Skip to content

Commit d14e1c7

Browse files
author
Paul Gebheim
committed
Whitelist contracts
1 parent 219417c commit d14e1c7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

source/libraries/ContractDeployer.ts

Lines changed: 2 additions & 1 deletion
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,6 +243,7 @@ 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!;
246247
for (let contract of this.contracts) {
247248
if (!contract.relativeFilePath.startsWith('trading/')) continue;
248249
if (/^I[A-Z].*/.test(contract.contractName)) continue;

0 commit comments

Comments
 (0)