From 22e09dba994c7730dd11afef5b2c69868cbd0f57 Mon Sep 17 00:00:00 2001 From: zramsay <zach@monax.io> Date: Mon, 15 May 2017 11:49:45 -0400 Subject: [PATCH] client websocket: add missing verb to error message --- client/websocket_client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/websocket_client.go b/client/websocket_client.go index c6b628dd..e3da5e9f 100644 --- a/client/websocket_client.go +++ b/client/websocket_client.go @@ -166,7 +166,7 @@ func (burrowNodeWebsocketClient *burrowNodeWebsocketClient) WaitForConfirmation( confirmationChannel <- Confirmation{ BlockHash: latestBlockHash, Event: &data, - Exception: fmt.Errorf("Transaction confirmed with exception:", data.Exception), + Exception: fmt.Errorf("Transaction confirmed with exception: %v", data.Exception), Error: nil, } return -- GitLab