Skip to content

Commit

Permalink
fix yaml var name
Browse files Browse the repository at this point in the history
  • Loading branch information
millken committed May 30, 2023
1 parent e6152e9 commit 0087a81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blockchain/genesis/genesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -289,9 +289,9 @@ type (
// SystemStakingContractHeight is the height of system staking contract
SystemStakingContractHeight uint64 `yaml:"systemStakingContractHeight"`
// SystemSGDContractAddress is the address of system sgd contract
SystemSGDContractAddress string `yaml:"sgdContractAddress"`
SystemSGDContractAddress string `yaml:"systemSGDContractAddress"`
// SystemSGDContractHeight is the height of system sgd contract
SystemSGDContractHeight uint64 `yaml:"sgdContractHeight"`
SystemSGDContractHeight uint64 `yaml:"systemSGDContractHeight"`
}
// Delegate defines a delegate with address and votes
Delegate struct {
Expand Down

0 comments on commit 0087a81

Please sign in to comment.