From e924eee02a79fb3aac7c2bdfef484c57cc7e96ea Mon Sep 17 00:00:00 2001 From: Jason Yellick Date: Fri, 13 Jan 2017 17:37:53 -0500 Subject: [PATCH] [FAB-1651] Fix broadcast_timestamp client https://jira.hyperledger.org/browse/FAB-1651 The broadcast_timestamp client has gotten slightly out of sync with the orderer code, and does not work. It is a simple fix to set the signature header field as seen in the diff. Change-Id: I70c00b356ac65b74d06e59f1bd05eab0e9f4097d Signed-off-by: Jason Yellick --- orderer/sample_clients/broadcast_timestamp/client.go | 1 + 1 file changed, 1 insertion(+) diff --git a/orderer/sample_clients/broadcast_timestamp/client.go b/orderer/sample_clients/broadcast_timestamp/client.go index 563ee0c42f9..d05cedff5cd 100644 --- a/orderer/sample_clients/broadcast_timestamp/client.go +++ b/orderer/sample_clients/broadcast_timestamp/client.go @@ -46,6 +46,7 @@ func (s *broadcastClient) broadcast(transaction []byte) error { ChainHeader: &cb.ChainHeader{ ChainID: s.chainID, }, + SignatureHeader: &cb.SignatureHeader{}, }, Data: transaction, })