Skip to content

Commit

Permalink
feat: do not add default VOTE asset to genesis state
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel1302 committed Sep 8, 2023
1 parent 5dd7176 commit d466c46
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions generator/genesis/generator.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import (
"path/filepath"
"text/template"

"code.vegaprotocol.io/vega/core/assets"
"code.vegaprotocol.io/vega/core/genesis"
vgtm "code.vegaprotocol.io/vega/core/tendermint"
"code.vegaprotocol.io/vegacapsule/config"
Expand Down Expand Up @@ -150,6 +151,9 @@ func (g *Generator) generate(nodeSets []types.NodeSet, genValidators []tmtypes.G
}
}

// We do not want to have any additional asset in the state. People can add it if needed
genState.Assets = assets.GenesisState{}

// Nothing to do, we can stop here
if genDoc == nil {
return nil, fmt.Errorf("failed to generate genesis for empty NodeSets")
Expand Down

0 comments on commit d466c46

Please sign in to comment.