diff options
author | Alex Browne <stephenalexbrowne@gmail.com> | 2018-11-14 07:44:53 +0800 |
---|---|---|
committer | Fred Carlsen <fred@sjelfull.no> | 2018-12-06 19:04:25 +0800 |
commit | a2aeca7b66ebe78ff548f7d86b7ec04afbe75601 (patch) | |
tree | 1c2e7a508d19c92ca83f3cba0208f0c14df62008 /packages/pipeline/src/entities | |
parent | e394c4fe1dd3bcceb382bb56e9c63e0b320e193f (diff) | |
download | dexon-0x-contracts-a2aeca7b66ebe78ff548f7d86b7ec04afbe75601.tar.gz dexon-0x-contracts-a2aeca7b66ebe78ff548f7d86b7ec04afbe75601.tar.zst dexon-0x-contracts-a2aeca7b66ebe78ff548f7d86b7ec04afbe75601.zip |
Rename taker and maker amounts in sra_orders
Diffstat (limited to 'packages/pipeline/src/entities')
-rw-r--r-- | packages/pipeline/src/entities/sra_order.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/pipeline/src/entities/sra_order.ts b/packages/pipeline/src/entities/sra_order.ts index 2bdb1ba2e..4b7f652d3 100644 --- a/packages/pipeline/src/entities/sra_order.ts +++ b/packages/pipeline/src/entities/sra_order.ts @@ -19,9 +19,9 @@ export class SraOrder { public feeRecipientAddress!: string; @Column({ name: 'sender_address' }) public senderAddress!: string; - @Column({ name: 'maker_asset_filled_amount' }) + @Column({ name: 'maker_asset_amount' }) public makerAssetAmount!: string; - @Column({ name: 'taker_asset_filled_amount' }) + @Column({ name: 'taker_asset_amount' }) public takerAssetAmount!: string; @Column({ name: 'maker_fee' }) public makerFee!: string; |