From 18ef130c798b0b25878a428830e23be679a3ca45 Mon Sep 17 00:00:00 2001 From: Elias Van Ootegem Date: Wed, 1 May 2024 16:05:32 +0100 Subject: [PATCH] fix: set transfer ID for governance transfers Signed-off-by: Elias Van Ootegem --- CHANGELOG.md | 2 ++ core/collateral/engine.go | 1 + 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a0339aa8d76..6cf9b2d9d5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -83,6 +83,8 @@ - [11193](https://github.com/vegaprotocol/vega/issues/11193) - Fix loading of liquidation strategy from proto with missing data. - [11200](https://github.com/vegaprotocol/vega/issues/11200) - Make sure a party can afford the trades before they are submitted to the book. - [11205](https://github.com/vegaprotocol/vega/issues/11205) - Evaluate transfer interval correctly. +- [10374](https://github.com/vegaprotocol/vega/issues/10374) - Add transfer ID to recurring governance transfer ledger entries. + ## 0.75.0 ### 🚨 Breaking changes diff --git a/core/collateral/engine.go b/core/collateral/engine.go index 940fdc79487..72b70d59bf5 100644 --- a/core/collateral/engine.go +++ b/core/collateral/engine.go @@ -2594,6 +2594,7 @@ func (e *Engine) getGovernanceTransferFundsTransferRequest(ctx context.Context, MinAmount: t.Amount.Amount.Clone(), Asset: t.Amount.Asset, Type: t.Type, + TransferID: t.TransferID, }, nil }