diff options
author | Alex Browne <stephenalexbrowne@gmail.com> | 2018-12-05 12:04:08 +0800 |
---|---|---|
committer | Alex Browne <stephenalexbrowne@gmail.com> | 2018-12-05 12:04:08 +0800 |
commit | 00f86ca0f7871639d2b0be496f6f8c5e0d8d7ffe (patch) | |
tree | e2e1c5394deac225bf493b3fe51da9f3074f1691 /packages/pipeline/src/parsers/web3 | |
parent | 549f5e4655f246062dd6451065ec01eb789dbd8f (diff) | |
download | dexon-0x-contracts-00f86ca0f7871639d2b0be496f6f8c5e0d8d7ffe.tar dexon-0x-contracts-00f86ca0f7871639d2b0be496f6f8c5e0d8d7ffe.tar.gz dexon-0x-contracts-00f86ca0f7871639d2b0be496f6f8c5e0d8d7ffe.tar.bz2 dexon-0x-contracts-00f86ca0f7871639d2b0be496f6f8c5e0d8d7ffe.tar.lz dexon-0x-contracts-00f86ca0f7871639d2b0be496f6f8c5e0d8d7ffe.tar.xz dexon-0x-contracts-00f86ca0f7871639d2b0be496f6f8c5e0d8d7ffe.tar.zst dexon-0x-contracts-00f86ca0f7871639d2b0be496f6f8c5e0d8d7ffe.zip |
Address PR feedback
Diffstat (limited to 'packages/pipeline/src/parsers/web3')
-rw-r--r-- | packages/pipeline/src/parsers/web3/index.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/packages/pipeline/src/parsers/web3/index.ts b/packages/pipeline/src/parsers/web3/index.ts index 9b5b3b55d..86f924151 100644 --- a/packages/pipeline/src/parsers/web3/index.ts +++ b/packages/pipeline/src/parsers/web3/index.ts @@ -42,7 +42,6 @@ export function parseTransaction(rawTransaction: EthTransaction): Transaction { tx.blockNumber = rawTransaction.blockNumber; tx.gasUsed = rawTransaction.gas; - // TODO(albrow) figure out bignum solution. tx.gasPrice = rawTransaction.gasPrice.toNumber(); return tx; |