Skip to content

Commit

Permalink
[FAB-2588] Fix unkeyed fields in composite literal
Browse files Browse the repository at this point in the history
https://jira.hyperledger.org/browse/FAB-2588

Change-Id: I9f4587e08eb99f1e1abf0178537f968aee7179e4
Signed-off-by: Kostas Christidis <kostas@christidis.io>
  • Loading branch information
kchristidis committed Mar 2, 2017
1 parent 6509afd commit fe262cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion orderer/sbft_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ func TestSbftPeer(t *testing.T) {
keyFile := "sbft/testdata/key.pem"
cons := &simplebft.Config{N: 1, F: 0, BatchDurationNsec: 1000, BatchSizeBytes: 1000000000, RequestTimeoutNsec: 1000000000}
c := &sbft.ConsensusConfig{Consensus: cons, Peers: peers}
sc := &backend.StackConfig{listenAddr, certFile, keyFile, dataTmpDir}
sc := &backend.StackConfig{ListenAddr: listenAddr, CertFile: certFile, KeyFile: keyFile, DataDir: dataTmpDir}
sbftConsenter := sbft.New(c, sc)
<-time.After(5 * time.Second)
// End SBFT
Expand Down

0 comments on commit fe262cf

Please sign in to comment.