Skip to content

Commit 37579c0

Browse files
committed
[FAB-3460] Fix break in master
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 <[email protected]>
1 parent 9a1ce50 commit 37579c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/common/validation/fullflow_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ func TestTXWithTwoActionsRejected(t *testing.T) {
201201
simRes := []byte("simulation_result")
202202

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

0 commit comments

Comments
 (0)