Skip to content

Commit

Permalink
fix logic
Browse files Browse the repository at this point in the history
  • Loading branch information
Scitz0 committed Jul 17, 2024
1 parent 2f687c5 commit 50ae9d6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/cnode-helper-scripts/cntools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4098,7 +4098,7 @@ function main {
println " >> VOTE >> GOVERNANCE >> INFO & STATUS"
println DEBUG "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
echo
if versionCheck "10.0" "${PROT_VERSION}"; then
if ! versionCheck "10.0" "${PROT_VERSION}"; then
println INFO "${FG_YELLOW}Not yet in Conway era, please revisit once network has crossed into Cardano governance era!${NC}"; waitToProceed && continue
fi
println DEBUG "# Select wallet (derive governance keys if missing)"
Expand Down Expand Up @@ -4150,7 +4150,7 @@ function main {
println " >> VOTE >> GOVERNANCE >> DELEGATE"
println DEBUG "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
echo
if versionCheck "10.0" "${PROT_VERSION}"; then
if ! versionCheck "10.0" "${PROT_VERSION}"; then
println INFO "${FG_YELLOW}Not yet in Conway era, please revisit once network has crossed into Cardano governance era!${NC}"; waitToProceed && continue
fi
# TODO: implement
Expand All @@ -4172,7 +4172,7 @@ function main {
println " >> VOTE >> GOVERNANCE >> DREP REGISTRATION / UPDATE"
println DEBUG "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
echo
if versionCheck "10.0" "${PROT_VERSION}"; then
if ! versionCheck "10.0" "${PROT_VERSION}"; then
println INFO "${FG_YELLOW}Not yet in Conway era, please revisit once network has crossed into Cardano governance era!${NC}"; waitToProceed && continue
fi
# TODO: implement
Expand Down Expand Up @@ -4238,7 +4238,7 @@ function main {
println " >> VOTE >> GOVERNANCE >> DREP RETIRE"
println DEBUG "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
echo
if versionCheck "10.0" "${PROT_VERSION}"; then
if ! versionCheck "10.0" "${PROT_VERSION}"; then
println INFO "${FG_YELLOW}Not yet in Conway era, please revisit once network has crossed into Cardano governance era!${NC}"; waitToProceed && continue
fi
# TODO: implement
Expand Down

0 comments on commit 50ae9d6

Please sign in to comment.