-
Notifications
You must be signed in to change notification settings - Fork 22
/
market_checkpoint.go
43 lines (39 loc) · 1.4 KB
/
market_checkpoint.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package future
import (
"code.vegaprotocol.io/vega/core/types"
"code.vegaprotocol.io/vega/libs/num"
)
func (m *Market) GetCPState() *types.CPMarketState {
shares := m.equityShares.GetCPShares()
id := m.mkt.ID
// get all LP accounts, we don't have to sort this slice because we're fetching the balances
// in the same order as we got the ELS shares (which is already a deterministically sorted slice).
ipb, ok := m.collateral.GetInsurancePoolBalance(id, m.settlementAsset)
if !ok {
ipb = num.UintZero()
}
ms := types.CPMarketState{
ID: id,
Shares: shares,
InsuranceBalance: ipb,
LastTradeValue: m.feeSplitter.TradeValue(),
}
// if the market was closed/settled, include the last valid market definition in the checkpoint
if m.mkt.State == types.MarketStateSettled || m.mkt.State == types.MarketStateClosed {
ms.Market = m.mkt.DeepClone()
}
return &ms
}
func (m *Market) LoadCPState(state *types.CPMarketState) {
m.mkt = state.Market
m.feeSplitter.SetTradeValue(state.LastTradeValue)
m.equityShares.SetCPShares(state.Shares)
// @TODO bond account and insurance account
}
func (m *Market) SetSuccessorELS(state *types.CPMarketState) {
// carry over traded value from predecessor
m.feeSplitter.AddTradeValue(state.LastTradeValue)
// load equity like shares
m.equityShares.SetCPShares(state.Shares)
// @TODO force a recalculation for the LP's who actually are present
}