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/test/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/test/entities')
-rw-r--r-- | packages/pipeline/test/entities/transaction_test.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/pipeline/test/entities/transaction_test.ts b/packages/pipeline/test/entities/transaction_test.ts index 027de7d32..634844544 100644 --- a/packages/pipeline/test/entities/transaction_test.ts +++ b/packages/pipeline/test/entities/transaction_test.ts @@ -1,3 +1,4 @@ +import { BigNumber } from '@0x/utils'; import 'mocha'; import 'reflect-metadata'; @@ -17,8 +18,8 @@ describe('Transaction entity', () => { const transaction = new Transaction(); transaction.blockHash = '0x6ff106d00b6c3746072fc06bae140fb2549036ba7bcf9184ae19a42fd33657fd'; transaction.blockNumber = 6276262; - transaction.gasPrice = 3000000; - transaction.gasUsed = 125000; + transaction.gasPrice = new BigNumber(3000000); + transaction.gasUsed = new BigNumber(125000); transaction.transactionHash = '0x6dd106d002873746072fc5e496dd0fb2541b68c77bcf9184ae19a42fd33657fe'; await testSaveAndFindEntityAsync(transactionRepository, transaction); }); |