Skip to content

Commit 94fdba3

Browse files
committed
fix: buyer fees stored in the wrong order in the trade DB
1 parent 94d5319 commit 94fdba3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datanode/sqlstore/trades.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ func (ts *Trades) Flush(ctx context.Context) ([]*entities.Trade, error) {
6666
t.Type,
6767
t.BuyerMakerFee,
6868
t.BuyerInfrastructureFee,
69+
t.BuyerLiquidityFee,
6970
t.BuyerBuyBackFee,
7071
t.BuyerTreasuryFee,
7172
t.BuyerHighVolumeMakerFee,
72-
t.BuyerLiquidityFee,
7373
t.SellerMakerFee,
7474
t.SellerInfrastructureFee,
7575
t.SellerLiquidityFee,

0 commit comments

Comments
 (0)