diff options
author | Alex Browne <stephenalexbrowne@gmail.com> | 2018-11-09 02:15:09 +0800 |
---|---|---|
committer | Alex Browne <stephenalexbrowne@gmail.com> | 2018-12-05 06:24:48 +0800 |
commit | ccad046eb649a60fdf7319a075fa41490d593ae8 (patch) | |
tree | 3c356e71868c7dcc770791dc70e90ae7abc16a30 /packages/pipeline/src/parsers/web3/index.ts | |
parent | 954c3b9272556723c10fd02ad6b753ac98ca47fa (diff) | |
download | dexon-sol-tools-ccad046eb649a60fdf7319a075fa41490d593ae8.tar.gz dexon-sol-tools-ccad046eb649a60fdf7319a075fa41490d593ae8.tar.zst dexon-sol-tools-ccad046eb649a60fdf7319a075fa41490d593ae8.zip |
Reorganize entities. Make scripts work from any directory.
Diffstat (limited to 'packages/pipeline/src/parsers/web3/index.ts')
-rw-r--r-- | packages/pipeline/src/parsers/web3/index.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/pipeline/src/parsers/web3/index.ts b/packages/pipeline/src/parsers/web3/index.ts index c6647c966..11571278b 100644 --- a/packages/pipeline/src/parsers/web3/index.ts +++ b/packages/pipeline/src/parsers/web3/index.ts @@ -1,7 +1,6 @@ import { BlockWithoutTransactionData, Transaction as EthTransaction } from 'ethereum-types'; -import { Block } from '../../entities/Block'; -import { Transaction } from '../../entities/Transaction'; +import { Block, Transaction } from '../../entities'; export function parseBlock(rawBlock: BlockWithoutTransactionData): Block { if (rawBlock.hash == null) { |