diff options
author | Alex Browne <stephenalexbrowne@gmail.com> | 2018-12-05 12:20:49 +0800 |
---|---|---|
committer | Fred Carlsen <fred@sjelfull.no> | 2018-12-06 19:06:35 +0800 |
commit | 21cbf05362e995acb788b49e7d358beaf03e3311 (patch) | |
tree | fd3a0fb01ea0d7c6787c1f5f152dd0ed2aa590d5 /packages/pipeline/src/parsers | |
parent | a3718803a0a56d82092f15b6f190a01ba299280f (diff) | |
download | dexon-sol-tools-21cbf05362e995acb788b49e7d358beaf03e3311.tar dexon-sol-tools-21cbf05362e995acb788b49e7d358beaf03e3311.tar.gz dexon-sol-tools-21cbf05362e995acb788b49e7d358beaf03e3311.tar.bz2 dexon-sol-tools-21cbf05362e995acb788b49e7d358beaf03e3311.tar.lz dexon-sol-tools-21cbf05362e995acb788b49e7d358beaf03e3311.tar.xz dexon-sol-tools-21cbf05362e995acb788b49e7d358beaf03e3311.tar.zst dexon-sol-tools-21cbf05362e995acb788b49e7d358beaf03e3311.zip |
Change type of transactions.gas_used and gas_price to BigNumber/numeric
Diffstat (limited to 'packages/pipeline/src/parsers')
-rw-r--r-- | packages/pipeline/src/parsers/web3/index.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/pipeline/src/parsers/web3/index.ts b/packages/pipeline/src/parsers/web3/index.ts index 86f924151..f986efc59 100644 --- a/packages/pipeline/src/parsers/web3/index.ts +++ b/packages/pipeline/src/parsers/web3/index.ts @@ -1,3 +1,4 @@ +import { BigNumber } from '@0x/utils'; import { BlockWithoutTransactionData, Transaction as EthTransaction } from 'ethereum-types'; import { Block, Transaction } from '../../entities'; @@ -41,8 +42,8 @@ export function parseTransaction(rawTransaction: EthTransaction): Transaction { tx.blockHash = rawTransaction.blockHash; tx.blockNumber = rawTransaction.blockNumber; - tx.gasUsed = rawTransaction.gas; - tx.gasPrice = rawTransaction.gasPrice.toNumber(); + tx.gasUsed = new BigNumber(rawTransaction.gas); + tx.gasPrice = rawTransaction.gasPrice; return tx; } |