We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents efb9677 + 367938d commit 22dbdf1Copy full SHA for 22dbdf1
mithril-test-lab/mithril-devnet/VERSION
@@ -1 +1 @@
1
-0.3.2
+0.3.3
mithril-test-lab/mithril-devnet/mkfiles/mkfiles-mithril-payment.sh
@@ -153,8 +153,18 @@ cat >> payment-mithril.sh <<EOF
153
# Run payment iterations
154
for (( j=1; j<=\${PAYMENT_ITERATIONS}; j++ ))
155
do
156
+ set +e
157
process_payment_iteration \$j
158
+ set -e
159
done
160
+
161
+# Check that at least one transaction has been successfully submitted
162
+TOTAL_TX_SUBMITTED=\$(cat ${TX_ID_OUTPUT_FILE} | wc -l)
163
+if [ \$TOTAL_TX_SUBMITTED -eq 0 ]; then
164
+ echo ">>>>>> Error: No transaction was successfully submitted!"
165
+ exit 1
166
+fi
167
168
EOF
169
170
chmod u+x payment-mithril.sh
0 commit comments