Skip to content

Commit

Permalink
[FAB-3460] Fix break in master
Browse files Browse the repository at this point in the history
The signature of CreateProposalResponse was changed but not all of the
places from which it was called were updated.

Change-Id: Iac44119c74d5604fd142e215c0a1d188456480ff
Signed-off-by: Alessandro Sorniotti <ale.linux@sopit.net>
  • Loading branch information
ale-linux committed Apr 27, 2017
1 parent 9a1ce50 commit 37579c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/common/validation/fullflow_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ func TestTXWithTwoActionsRejected(t *testing.T) {
simRes := []byte("simulation_result")

// endorse it to get a proposal response
presp, err := utils.CreateProposalResponse(prop.Header, prop.Payload, response, simRes, nil, nil, signer)
presp, err := utils.CreateProposalResponse(prop.Header, prop.Payload, response, simRes, nil, &peer.ChaincodeID{Name: "somename", Version: "someversion"}, nil, signer)
if err != nil {
t.Fatalf("CreateProposalResponse failed, err %s", err)
return
Expand Down

0 comments on commit 37579c0

Please sign in to comment.