Skip to content

Commit

Permalink
Merge pull request #659 from CodingCattwo/dev152
Browse files Browse the repository at this point in the history
fix constructor with string param
  • Loading branch information
CodingCattwo authored Oct 8, 2021
2 parents 6e63d86 + b8a45b7 commit 2cfaaa8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,8 @@ public String deployWithSign(ReqDeploy req) {
}

// data sign
String data = bytecodeBin + encodedConstructor;
// String data = bytecodeBin + encodedConstructor;
String data = encodedConstructor;
String signMsg = transService.signMessage(groupId, client, signUserId, "", data);
// send transaction
TransactionReceipt receipt = transService.sendMessage(client, signMsg);
Expand Down

0 comments on commit 2cfaaa8

Please sign in to comment.