From 632d4175ce1b8f8e3c822413fe73e6915e352b7d Mon Sep 17 00:00:00 2001 From: Romano <6548898+romanornr@users.noreply.github.com> Date: Tue, 15 Oct 2024 01:02:43 +0200 Subject: [PATCH] Bybit: Add CryptoChain field to GetWithdrawalsHistory wrapper (#1675) --- exchanges/bybit/bybit_wrapper.go | 1 + 1 file changed, 1 insertion(+) diff --git a/exchanges/bybit/bybit_wrapper.go b/exchanges/bybit/bybit_wrapper.go index a0420063..9e091ba5 100644 --- a/exchanges/bybit/bybit_wrapper.go +++ b/exchanges/bybit/bybit_wrapper.go @@ -679,6 +679,7 @@ func (by *Bybit) GetWithdrawalsHistory(ctx context.Context, c currency.Code, a a Fee: withdrawals.Rows[i].WithdrawFee.Float64(), CryptoToAddress: withdrawals.Rows[i].ToAddress, CryptoTxID: withdrawals.Rows[i].TransactionID, + CryptoChain: withdrawals.Rows[i].Chain, Timestamp: withdrawals.Rows[i].UpdateTime.Time(), } }