diff options
author | Alex Browne <stephenalexbrowne@gmail.com> | 2018-10-19 08:44:48 +0800 |
---|---|---|
committer | Alex Browne <stephenalexbrowne@gmail.com> | 2018-12-05 06:24:48 +0800 |
commit | 3a19faa5ff8a66395c5eb8d1400338cefaa21187 (patch) | |
tree | f35c9bbef19ebcef15e92f5f306040727d3b91a4 /packages/pipeline/src/entities/ExchangeCancelUpToEvent.ts | |
parent | bbe1a843ef44e518fc957ea36325d5a730502de5 (diff) | |
download | dexon-sol-tools-3a19faa5ff8a66395c5eb8d1400338cefaa21187.tar dexon-sol-tools-3a19faa5ff8a66395c5eb8d1400338cefaa21187.tar.gz dexon-sol-tools-3a19faa5ff8a66395c5eb8d1400338cefaa21187.tar.bz2 dexon-sol-tools-3a19faa5ff8a66395c5eb8d1400338cefaa21187.tar.lz dexon-sol-tools-3a19faa5ff8a66395c5eb8d1400338cefaa21187.tar.xz dexon-sol-tools-3a19faa5ff8a66395c5eb8d1400338cefaa21187.tar.zst dexon-sol-tools-3a19faa5ff8a66395c5eb8d1400338cefaa21187.zip |
Update script to work with existing v1 pipeline data
Diffstat (limited to 'packages/pipeline/src/entities/ExchangeCancelUpToEvent.ts')
-rw-r--r-- | packages/pipeline/src/entities/ExchangeCancelUpToEvent.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/pipeline/src/entities/ExchangeCancelUpToEvent.ts b/packages/pipeline/src/entities/ExchangeCancelUpToEvent.ts index 03a02b069..3ca75ccf7 100644 --- a/packages/pipeline/src/entities/ExchangeCancelUpToEvent.ts +++ b/packages/pipeline/src/entities/ExchangeCancelUpToEvent.ts @@ -1,11 +1,12 @@ -import { BaseEntity, Column, Entity, PrimaryColumn } from 'typeorm'; +import { Column, Entity, PrimaryColumn } from 'typeorm'; @Entity() -export class ExchangeCancelUpToEvent extends BaseEntity { +export class ExchangeCancelUpToEvent { @PrimaryColumn() public contractAddress!: string; @PrimaryColumn() public logIndex!: number; @PrimaryColumn() public blockNumber!: number; + // TODO(albrow): Include transaction hash @Column() public rawData!: string; @Column() public makerAddress!: string; |