Skip to content

Commit f4e45e4

Browse files
authored
Merge pull request #183 from XinFinOrg/feature-v1-release
update for Subnet Configuration Generator v1 release
2 parents 9bcc13c + 80212a9 commit f4e45e4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cmd/puppeth/wizard_genesis.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ func (w *wizard) makeGenesis() {
7979
genesis.Config.XDPoS.NetworkName = w.readDefaultString("xdc-subnet")
8080

8181
fmt.Println()
82-
fmt.Println("What's the name of the chain denomination? (default = 0x)")
83-
genesis.Config.XDPoS.Denom = w.readDefaultString("0x")
82+
fmt.Println("What's the name of the chain denomination? (default = sdc)")
83+
genesis.Config.XDPoS.Denom = w.readDefaultString("sdc")
8484

8585
fmt.Println()
8686
fmt.Println("How many seconds should blocks take? (default = 2)")

cmd/puppeth/wizard_genesis_file.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ type GenesisInput struct {
6060
func NewGenesisInput() *GenesisInput {
6161
return &GenesisInput{
6262
Name: "xdc-subnet",
63-
Denom: "0x",
63+
Denom: "sdc",
6464
Period: 2,
6565
Reward: 2,
6666
TimeoutPeriod: 10,

0 commit comments

Comments
 (0)