Skip to content

Commit

Permalink
genesis: Fix network ID for NetworkId::Main
Browse files Browse the repository at this point in the history
Fix network ID for `NetworkId::Main` as it was using
`NetworkId::UnitAlbatross` instead of `NetworkId::MainAlbatross`.
  • Loading branch information
jsdanielh committed Apr 4, 2024
1 parent 20f8435 commit 46702f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion genesis/src/networks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ fn network_impl(network_id: NetworkId) -> Option<&'static NetworkInfo> {
}
}
static INFO: NetworkInfo = NetworkInfo {
network_id: NetworkId::UnitAlbatross,
network_id: NetworkId::MainAlbatross,
name: "main-albatross",
genesis: include!(concat!(
env!("OUT_DIR"),
Expand Down

0 comments on commit 46702f7

Please sign in to comment.