Skip to content

Commit

Permalink
Merge pull request hyperledger-archives#379 from benjaminbollen/issue…
Browse files Browse the repository at this point in the history
…378_fix_error_description_in_client

client/core: fixes 378 report exception, not error
  • Loading branch information
RJ committed Nov 14, 2016
2 parents 58b439c + ede0dc0 commit ae9704f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/core/transaction_factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ func SignAndBroadcast(chainID string, nodeClient client.NodeClient, keyClient ke
return
}
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
return
}
Expand Down

0 comments on commit ae9704f

Please sign in to comment.