diff options
author | Alex Browne <stephenalexbrowne@gmail.com> | 2018-11-14 07:44:53 +0800 |
---|---|---|
committer | Fred Carlsen <fred@sjelfull.no> | 2018-12-13 01:16:08 +0800 |
commit | fb8267d85ecaafc0967095548592a9c7aad23257 (patch) | |
tree | 48e3cdac6146e5be7e082e2efd2eeead8105e3d8 | |
parent | d842078997c743aa838f723da05ed405c42e834f (diff) | |
download | dexon-sol-tools-fb8267d85ecaafc0967095548592a9c7aad23257.tar.gz dexon-sol-tools-fb8267d85ecaafc0967095548592a9c7aad23257.tar.zst dexon-sol-tools-fb8267d85ecaafc0967095548592a9c7aad23257.zip |
Rename taker and maker amounts in sra_orders
-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; |