Skip to content

Commit

Permalink
Merge pull request #74 from kaleido-io/fix-sign-key
Browse files Browse the repository at this point in the history
fixing signing key support for custom contract
  • Loading branch information
shorsher authored Dec 11, 2023
2 parents 69b7159 + 2a29a03 commit 1bb8d52
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion internal/perf/custom_ethereum_contract.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,9 @@ func (tc *customEthereum) RunOnce(iterationCount int) (string, error) {
"input": {
"newValue": %v
},
"key": "%s",
"idempotencyKey": "%s"%s
}`, tc.pr.cfg.ContractOptions.Address, tc.workerID, idempotencyKey, invokeOptionsJSON)
}`, tc.pr.cfg.ContractOptions.Address, tc.workerID, tc.pr.cfg.SigningKey, idempotencyKey, invokeOptionsJSON)
var resContractCall map[string]interface{}
var resError fftypes.RESTError
fullPath, err := url.JoinPath(tc.pr.client.BaseURL, tc.pr.cfg.FFNamespacePath, "contracts/invoke")
Expand Down

0 comments on commit 1bb8d52

Please sign in to comment.