Skip to content

Commit d03d5cc

Browse files
committedAug 24, 2023
fix(unionvisor): fix genesis gist url
1 parent 4736b73 commit d03d5cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎unionvisor/src/network.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ impl Network {
3737
// `self` will be used later on to determine which URL to use based on the network
3838
#[allow(clippy::unused_self)]
3939
pub fn seeds(&self) -> &str {
40-
"6a2d3a6f846792b99c4cfa3ccb40f80073bac30d@union-testnet.cor.systems:26656,7139b86ff37752437cf01a4970bf2b26c45c53e0@uniontestnet.poisonphang.com:26656"
40+
""
4141
}
4242

4343
// `self` will be used later on to determine which URL to use based on the network
4444
#[allow(clippy::unused_self)]
4545
pub fn genesis_url(&self) -> &str {
4646
// We use a secret gist for the genesis.json until testnet is public
4747
// "https://raw.githubusercontent.com/unionlabs/genesis/main/union-testnet-1/genesis.json"
48-
"https://gist.githubusercontent.com/cor/ffb8ec1a35a28fc1b3aad89f3fb466d4/raw/434b9f88a0ee6099cbbabafcd144f958a03ce655/union-testnet-2-gentx.json"
48+
"https://gist.githubusercontent.com/cor/5cab203f0f41549a2e04e48fc10bf889/raw/0bb5a9d3c02f38b6a34f85314dff04100f3605bc/union-testnet-3-genesis.json"
4949
}
5050
}

0 commit comments

Comments
 (0)
Please sign in to comment.