Commit e1bd5504 authored by shajiaiming's avatar shajiaiming

Merge branch 'feature/cross_chain' into 'master'

fix See merge request !141
parents f3fcd79c b630006a
...@@ -195,10 +195,17 @@ class CrossChainController extends Controller ...@@ -195,10 +195,17 @@ class CrossChainController extends Controller
static $result = []; static $result = [];
$service = new Chain33Service($node_params); $service = new Chain33Service($node_params);
$result = $service->QueryTransaction($send_result); $result = $service->QueryTransaction($send_result);
if (isset($result['result']['receipt']) && is_array($result['result']['receipt']['logs'])) {
foreach ($result['result']['receipt']['logs'] as $log) {
if (isset($log['tyName']) && 'logerr' == strtolower($log['tyName'])) {
return $result;
}
}
}
if (isset($result['result']['tx']['next'])) { if (isset($result['result']['tx']['next'])) {
$this->queryTransaction($node_params, $result['result']['tx']['next']); $this->queryTransaction($node_params, $result['result']['tx']['next']);
} }
return $result; return $result;
// if (isset($result['result']['actionName']) && 'unknown' == $result['result']['actionName']) { // if (isset($result['result']['actionName']) && 'unknown' == $result['result']['actionName']) {
......
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