Skip to content

Commit

Permalink
Merge pull request WeBankBlockchain#660 from WeBankFinTech/dev
Browse files Browse the repository at this point in the history
fix constructor with string param of webase-web
  • Loading branch information
CodingCattwo authored Oct 8, 2021
2 parents 4823d13 + 2cfaaa8 commit 0bb6b05
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 0bb6b05

Please sign in to comment.