From 0294419bcca6425e684fbbf64262c59594262cbd Mon Sep 17 00:00:00 2001 From: Adam Tucker Date: Sat, 15 Apr 2023 21:09:06 -0500 Subject: [PATCH] patch data struct (#4926) --- tests/cl-genesis-positions/edit_localosmosis_genesis.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/cl-genesis-positions/edit_localosmosis_genesis.go b/tests/cl-genesis-positions/edit_localosmosis_genesis.go index 6ea0a996e90..01052e873fa 100644 --- a/tests/cl-genesis-positions/edit_localosmosis_genesis.go +++ b/tests/cl-genesis-positions/edit_localosmosis_genesis.go @@ -18,6 +18,7 @@ import ( osmosisApp "github.com/osmosis-labs/osmosis/v15/app" "github.com/osmosis-labs/osmosis/v15/x/concentrated-liquidity/model" "github.com/osmosis-labs/osmosis/v15/x/concentrated-liquidity/types" + cltypes "github.com/osmosis-labs/osmosis/v15/x/concentrated-liquidity/types" clgenesis "github.com/osmosis-labs/osmosis/v15/x/concentrated-liquidity/types/genesis" poolmanagertypes "github.com/osmosis-labs/osmosis/v15/x/poolmanager/types" @@ -59,9 +60,9 @@ func EditLocalOsmosisGenesis(updatedCLGenesis *clgenesis.GenesisState, updatedBa appState[poolmanagertypes.ModuleName] = cdc.MustMarshalJSON(&localOsmosisPoolManagerGenesis) // Copy positions - for _, position := range updatedCLGenesis.Positions { - position.PoolId = nextPoolId - localOsmosisCLGenesis.Positions = append(localOsmosisCLGenesis.Positions, position) + for _, positionData := range updatedCLGenesis.PositionData { + positionData.Position.PoolId = nextPoolId + localOsmosisCLGenesis.PositionData = append(localOsmosisCLGenesis.PositionData, positionData) } // Create map of pool balances @@ -122,7 +123,7 @@ func EditLocalOsmosisGenesis(updatedCLGenesis *clgenesis.GenesisState, updatedBa localOsmosisCLGenesis.PoolData = append(localOsmosisCLGenesis.PoolData, updatedPoolData) } - localOsmosisCLGenesis.NextPositionId = uint64(len(localOsmosisCLGenesis.Positions) + 1) + localOsmosisCLGenesis.NextPositionId = uint64(len(localOsmosisCLGenesis.PositionData) + 1) appState[cltypes.ModuleName] = cdc.MustMarshalJSON(&localOsmosisCLGenesis)