Skip to content
Snippets Groups Projects
Commit 22e09dba authored by zramsay's avatar zramsay
Browse files

client websocket: add missing verb to error message

parent ba4907b2
No related branches found
No related tags found
No related merge requests found
...@@ -166,7 +166,7 @@ func (burrowNodeWebsocketClient *burrowNodeWebsocketClient) WaitForConfirmation( ...@@ -166,7 +166,7 @@ func (burrowNodeWebsocketClient *burrowNodeWebsocketClient) WaitForConfirmation(
confirmationChannel <- Confirmation{ confirmationChannel <- Confirmation{
BlockHash: latestBlockHash, BlockHash: latestBlockHash,
Event: &data, Event: &data,
Exception: fmt.Errorf("Transaction confirmed with exception:", data.Exception), Exception: fmt.Errorf("Transaction confirmed with exception: %v", data.Exception),
Error: nil, Error: nil,
} }
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