Skip to content
This repository has been archived by the owner on May 13, 2022. It is now read-only.

client/core: fixes 378 report exception, not error #379

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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