diff options
author | Alex Browne <stephenalexbrowne@gmail.com> | 2018-12-05 12:20:49 +0800 |
---|---|---|
committer | Alex Browne <stephenalexbrowne@gmail.com> | 2018-12-05 12:20:49 +0800 |
commit | e0348f9c044b4909260e4864398b4f50232da620 (patch) | |
tree | 2250eb061a4b2c27d3dc1727a26e1380cb8d9226 /packages/pipeline/src/entities | |
parent | 2e704ac01a077b0c73288aaa53c9cf66c73e27f1 (diff) | |
download | dexon-sol-tools-e0348f9c044b4909260e4864398b4f50232da620.tar dexon-sol-tools-e0348f9c044b4909260e4864398b4f50232da620.tar.gz dexon-sol-tools-e0348f9c044b4909260e4864398b4f50232da620.tar.bz2 dexon-sol-tools-e0348f9c044b4909260e4864398b4f50232da620.tar.lz dexon-sol-tools-e0348f9c044b4909260e4864398b4f50232da620.tar.xz dexon-sol-tools-e0348f9c044b4909260e4864398b4f50232da620.tar.zst dexon-sol-tools-e0348f9c044b4909260e4864398b4f50232da620.zip |
Change type of transactions.gas_used and gas_price to BigNumber/numeric
Diffstat (limited to 'packages/pipeline/src/entities')
-rw-r--r-- | packages/pipeline/src/entities/transaction.ts | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/packages/pipeline/src/entities/transaction.ts b/packages/pipeline/src/entities/transaction.ts index 91e4ecb5d..742050177 100644 --- a/packages/pipeline/src/entities/transaction.ts +++ b/packages/pipeline/src/entities/transaction.ts @@ -1,6 +1,7 @@ +import { BigNumber } from '@0x/utils'; import { Column, Entity, PrimaryColumn } from 'typeorm'; -import { numberToBigIntTransformer } from '../utils'; +import { bigNumberTransformer, numberToBigIntTransformer } from '../utils'; @Entity({ name: 'transactions', schema: 'raw' }) export class Transaction { @@ -11,8 +12,8 @@ export class Transaction { @PrimaryColumn({ name: 'block_number', transformer: numberToBigIntTransformer }) public blockNumber!: number; - @Column({ type: 'bigint', name: 'gas_used', transformer: numberToBigIntTransformer }) - public gasUsed!: number; - @Column({ type: 'bigint', name: 'gas_price', transformer: numberToBigIntTransformer }) - public gasPrice!: number; + @Column({ type: 'numeric', name: 'gas_used', transformer: bigNumberTransformer }) + public gasUsed!: BigNumber; + @Column({ type: 'numeric', name: 'gas_price', transformer: bigNumberTransformer }) + public gasPrice!: BigNumber; } |