Skip to content

Commit

Permalink
add chainDNSSeeds for Bitcoingold Testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
shelvenzhou committed Jul 19, 2018
1 parent 172799a commit 04c203c
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions chainregistry.go
Original file line number Diff line number Diff line change
Expand Up @@ -686,8 +686,8 @@ var (
0x59, 0x40, 0xfd, 0x1f, 0xe3, 0x65, 0xa7, 0x12,
})

// bitcoingoldGenesis is the genesis hash of Bitcoingold's testnet chain.
bitcoingoldGenesis = chainhash.Hash([chainhash.HashSize]byte{
// bitcoingoldTestnetGenesis is the genesis hash of Bitcoingold's testnet chain.
bitcoingoldTestnetGenesis = chainhash.Hash([chainhash.HashSize]byte{
0xf6, 0xf9, 0xe6, 0x53, 0x38, 0xde, 0x59, 0x89,
0xe7, 0x79, 0xc3, 0x3e, 0xb5, 0x57, 0xf5, 0xa2,
0xfe, 0xad, 0x93, 0xc2, 0xed, 0x1e, 0xb9, 0x24,
Expand All @@ -703,7 +703,7 @@ var (
bitcoinMainnetGenesis: bitcoinChain,
litecoinMainnetGenesis: litecoinChain,

bitcoingoldGenesis: bitcoingoldChain,
bitcoingoldTestnetGenesis: bitcoingoldChain,
}

// chainDNSSeeds is a map of a chain's hash to the set of DNS seeds
Expand Down Expand Up @@ -739,6 +739,13 @@ var (
"soa.nodes.lightning.directory",
},
},

bitcoingoldTestnetGenesis: {
{
"test.nodes.lightning.directory",
"soa.nodes.lightning.directory",
},
},
}
)

Expand Down

0 comments on commit 04c203c

Please sign in to comment.