Commit feac127d authored by caopingcp's avatar caopingcp Committed by vipwzw

fix shellcheck issue

parent bbe6c893
...@@ -115,7 +115,7 @@ function query_tx() { ...@@ -115,7 +115,7 @@ function query_tx() {
exec_ok=$(jq '(.result.receipt.tyName == "ExecOk")' <<<"$ret") exec_ok=$(jq '(.result.receipt.tyName == "ExecOk")' <<<"$ret")
[[ $exec_ok == true ]] [[ $exec_ok == true ]]
echo_rst "query tx=$1" $? echo_rst "query tx=$1" $?
echo -e "######\n response: $ret \n######" echo -e "######\\n response: $ret \\n######"
break break
fi fi
done done
...@@ -135,7 +135,7 @@ chain33_SendToAddress() { ...@@ -135,7 +135,7 @@ chain33_SendToAddress() {
#查询交易 #查询交易
txhash=$(jq -r ".result.hash" <<<"$resp") txhash=$(jq -r ".result.hash" <<<"$resp")
query_tx $txhash $http query_tx "$txhash" "$http"
} }
chain33_SendTransaction() { chain33_SendTransaction() {
...@@ -251,7 +251,7 @@ lottery_GetLotteryCurrentInfo() { ...@@ -251,7 +251,7 @@ lottery_GetLotteryCurrentInfo() {
if [[ $status == 3 ]]; then if [[ $status == 3 ]]; then
luckyNumber=$(echo "${resp}" | jq -r ".result.luckyNumber") luckyNumber=$(echo "${resp}" | jq -r ".result.luckyNumber")
echo -e "######\n luckyNumber is $luckyNumber \n######" echo -e "######\\n luckyNumber is $luckyNumber \\n######"
fi fi
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment