Skip to content
Snippets Groups Projects
Commit 6f20bdab authored by Silas Davis's avatar Silas Davis Committed by GitHub
Browse files

Merge pull request #381 from benjaminbollen/issue378_patch_exception_on_0.12

client/core: fixes 378 patch exception error from chain
parents 88b5df20 4ebd82a6
No related branches found
No related tags found
No related merge requests found
...@@ -308,7 +308,7 @@ func SignAndBroadcast(chainID string, nodeClient client.NodeClient, keyClient ke ...@@ -308,7 +308,7 @@ func SignAndBroadcast(chainID string, nodeClient client.NodeClient, keyClient ke
return return
} }
if confirmation.Exception != nil { if confirmation.Exception != nil {
log.Errorf("Encountered Exception from chain w: %s\n", confirmation.Error) log.Errorf("Encountered Exception from chain: %s\n", confirmation.Exception)
err = confirmation.Exception err = confirmation.Exception
return return
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment