aboutsummaryrefslogtreecommitdiffstats
path: root/packages/pipeline/src/entities/exchange_cancel_up_to_event.ts
diff options
context:
space:
mode:
authorAlex Browne <stephenalexbrowne@gmail.com>2018-11-16 05:09:44 +0800
committerFred Carlsen <fred@sjelfull.no>2018-12-13 01:16:50 +0800
commit09a0ca659eca08cb20bb1096abf19f9ca4ef86c1 (patch)
treecdf2a1de435e9d287de7d6aa5f9863a433b6ee0d /packages/pipeline/src/entities/exchange_cancel_up_to_event.ts
parent1d189d112e303aeab898aad4a214f3e8b2ff710a (diff)
downloaddexon-sol-tools-09a0ca659eca08cb20bb1096abf19f9ca4ef86c1.tar
dexon-sol-tools-09a0ca659eca08cb20bb1096abf19f9ca4ef86c1.tar.gz
dexon-sol-tools-09a0ca659eca08cb20bb1096abf19f9ca4ef86c1.tar.bz2
dexon-sol-tools-09a0ca659eca08cb20bb1096abf19f9ca4ef86c1.tar.lz
dexon-sol-tools-09a0ca659eca08cb20bb1096abf19f9ca4ef86c1.tar.xz
dexon-sol-tools-09a0ca659eca08cb20bb1096abf19f9ca4ef86c1.tar.zst
dexon-sol-tools-09a0ca659eca08cb20bb1096abf19f9ca4ef86c1.zip
Add transactionHash to CancelUpToEvent and CancelEvent entities
Diffstat (limited to 'packages/pipeline/src/entities/exchange_cancel_up_to_event.ts')
-rw-r--r--packages/pipeline/src/entities/exchange_cancel_up_to_event.ts2
1 files changed, 2 insertions, 0 deletions
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' })