There was an error while loading. Please reload this page.
1 parent e255f72 commit cb0b1a1Copy full SHA for cb0b1a1
1 file changed
.github/workflows/main.yml
@@ -71,7 +71,7 @@ jobs:
71
run: |
72
chmod +x submission/03.sh
73
LATEST_BLOCK_HEIGHT=$(submission/03.sh)
74
- if [[ "$LATEST_BLOCK_HEIGHT" >= 0 ]]; then
+ if [[ $LATEST_BLOCK_HEIGHT -ge 0 ]]; then
75
echo "✅ Success: Node latest block height passed!"
76
else
77
echo "❌ Error: Node latest block height failed!"
@@ -148,7 +148,7 @@ jobs:
148
149
chmod +x submission/10.sh
150
RESULT=$(submission/10.sh)
151
- if [[ "$RESULT" == "true" ]]; then
+ if [[ "$RESULT" == "false" ]]; then
152
echo "✅ Success: Address validation passed!"
153
154
echo "❌ Error: Address validation failed"
0 commit comments