diff options
author | Fabio Berger <me@fabioberger.com> | 2017-12-19 17:36:54 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-12-19 17:36:54 +0800 |
commit | 684542d073367ac13021262e7e69edb607629c55 (patch) | |
tree | 61b347b520f3a02f7105385fafc6041866977f98 /packages/website | |
parent | bab01abe27220b73ced3f54d311d0718e332ff8c (diff) | |
download | dexon-sol-tools-684542d073367ac13021262e7e69edb607629c55.tar dexon-sol-tools-684542d073367ac13021262e7e69edb607629c55.tar.gz dexon-sol-tools-684542d073367ac13021262e7e69edb607629c55.tar.bz2 dexon-sol-tools-684542d073367ac13021262e7e69edb607629c55.tar.lz dexon-sol-tools-684542d073367ac13021262e7e69edb607629c55.tar.xz dexon-sol-tools-684542d073367ac13021262e7e69edb607629c55.tar.zst dexon-sol-tools-684542d073367ac13021262e7e69edb607629c55.zip |
Add airtable tasks to TODO's
Diffstat (limited to 'packages/website')
-rw-r--r-- | packages/website/ts/blockchain.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/website/ts/blockchain.ts b/packages/website/ts/blockchain.ts index 7a0d546b4..0f80c47a5 100644 --- a/packages/website/ts/blockchain.ts +++ b/packages/website/ts/blockchain.ts @@ -160,6 +160,8 @@ export class Blockchain { utils.assert(!_.isUndefined(this.zeroEx), 'ZeroEx must be instantiated.'); // HACK: temporarily whitelist the new WETH token address `as if` they were // already in the tokenRegistry. + // TODO: Remove this hack once we've updated the TokenRegistries + // Airtable task: https://airtable.com/tblFe0Q9JuKJPYbTn/viwsOG2Y97qdIeCIO/recv3VGmIorFzHBVz if (configs.shouldDeprecateOldWethToken && tokenAddress === configs.newWrappedEthers[this.networkId]) { return true; @@ -603,6 +605,7 @@ export class Blockchain { // we deploy the new WETH page, everyone will re-fill their trackedTokens with the // new canonical WETH. // TODO: Remove this hack once we've updated the TokenRegistries + // Airtable task: https://airtable.com/tblFe0Q9JuKJPYbTn/viwsOG2Y97qdIeCIO/recv3VGmIorFzHBVz let address = t.address; if (configs.shouldDeprecateOldWethToken && t.symbol === 'WETH') { const newEtherTokenAddressIfExists = configs.newWrappedEthers[this.networkId]; |