diff options
author | Alex Browne <stephenalexbrowne@gmail.com> | 2018-11-09 02:15:09 +0800 |
---|---|---|
committer | Fred Carlsen <fred@sjelfull.no> | 2018-12-06 19:04:24 +0800 |
commit | 012134001a3f0f60c938c453dc34d78e83e195c1 (patch) | |
tree | 337d99b3236e700f8163e01f146d29095d3e041c /packages/pipeline/src/parsers/web3 | |
parent | 0f869b0545d18863414ba4d5cc0c2aeb4da700db (diff) | |
download | dexon-sol-tools-012134001a3f0f60c938c453dc34d78e83e195c1.tar dexon-sol-tools-012134001a3f0f60c938c453dc34d78e83e195c1.tar.gz dexon-sol-tools-012134001a3f0f60c938c453dc34d78e83e195c1.tar.bz2 dexon-sol-tools-012134001a3f0f60c938c453dc34d78e83e195c1.tar.lz dexon-sol-tools-012134001a3f0f60c938c453dc34d78e83e195c1.tar.xz dexon-sol-tools-012134001a3f0f60c938c453dc34d78e83e195c1.tar.zst dexon-sol-tools-012134001a3f0f60c938c453dc34d78e83e195c1.zip |
Reorganize entities. Make scripts work from any directory.
Diffstat (limited to 'packages/pipeline/src/parsers/web3')
-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) { |