diff options
author | Alex Browne <stephenalexbrowne@gmail.com> | 2018-11-16 05:09:44 +0800 |
---|---|---|
committer | Fred Carlsen <fred@sjelfull.no> | 2018-12-06 19:04:25 +0800 |
commit | 4a715c30fdc7d46dfb90f23418bdeec4161db322 (patch) | |
tree | eeb74deeecdf0e02980072857c3bf5c16eed85b5 /packages/pipeline/src/entities | |
parent | 65bb8bdb5ec87310a421d432d0342b501e41bfd3 (diff) | |
download | dexon-sol-tools-4a715c30fdc7d46dfb90f23418bdeec4161db322.tar.gz dexon-sol-tools-4a715c30fdc7d46dfb90f23418bdeec4161db322.tar.zst dexon-sol-tools-4a715c30fdc7d46dfb90f23418bdeec4161db322.zip |
Add transactionHash to CancelUpToEvent and CancelEvent entities
Diffstat (limited to 'packages/pipeline/src/entities')
-rw-r--r-- | packages/pipeline/src/entities/exchange_cancel_event.ts | 3 | ||||
-rw-r--r-- | packages/pipeline/src/entities/exchange_cancel_up_to_event.ts | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/packages/pipeline/src/entities/exchange_cancel_event.ts b/packages/pipeline/src/entities/exchange_cancel_event.ts index 781e1c4bb..5a40ba799 100644 --- a/packages/pipeline/src/entities/exchange_cancel_event.ts +++ b/packages/pipeline/src/entities/exchange_cancel_event.ts @@ -14,7 +14,8 @@ export class ExchangeCancelEvent { @Column({ name: 'raw_data' }) public rawData!: string; - // TODO(albrow): Include transaction hash + @Column({ name: 'transaction_hash' }) + public transactionHash!: string; @Column({ name: 'maker_address' }) public makerAddress!: string; @Column({ nullable: true, type: String, name: 'taker_address' }) diff --git a/packages/pipeline/src/entities/exchange_cancel_up_to_event.ts b/packages/pipeline/src/entities/exchange_cancel_up_to_event.ts index 752631b85..9b1c6174a 100644 --- a/packages/pipeline/src/entities/exchange_cancel_up_to_event.ts +++ b/packages/pipeline/src/entities/exchange_cancel_up_to_event.ts @@ -16,6 +16,8 @@ export class ExchangeCancelUpToEvent { @Column({ name: 'raw_data' }) public rawData!: string; + @Column({ name: 'transaction_hash' }) + public transactionHash!: string; @Column({ name: 'maker_address' }) public makerAddress!: string; @Column({ name: 'sender_address' }) |