Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: turuslan <turuslan.devbox@gmail.com>
  • Loading branch information
turuslan committed Sep 21, 2022
1 parent d981abe commit 48a5e96
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions core/application/chain_spec.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,19 +79,19 @@ namespace kagome::application {
return id().rfind(prefix, 0) == 0;
}

bool isVersi() const {
bool isKusama() const {
return idStartsWith("kusama") || idStartsWith("ksm");
}

bool isWococo() const {
bool isRococo() const {
return idStartsWith("rococo") || idStartsWith("rco");
}

bool isRococo() const {
bool isWococo() const {
return idStartsWith("wococo") || idStartsWith("wco");
}

bool isKusama() const {
bool isVersi() const {
return idStartsWith("versi") || idStartsWith("vrs");
}
};
Expand Down

0 comments on commit 48a5e96

Please sign in to comment.