From 7a62a4c3dffcc8dd9278600c9aceb5bf68bd9383 Mon Sep 17 00:00:00 2001 From: Justin Chen <11806483+jchen8tw@users.noreply.github.com> Date: Mon, 9 Dec 2019 18:05:03 +0800 Subject: [PATCH] contract creation the to field in case of contract creation, to should be null not empty string --- examples/7nodes/samples/send-private-txn-quorum.js/send.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/7nodes/samples/send-private-txn-quorum.js/send.js b/examples/7nodes/samples/send-private-txn-quorum.js/send.js index ebcd9199..c25e893b 100644 --- a/examples/7nodes/samples/send-private-txn-quorum.js/send.js +++ b/examples/7nodes/samples/send-private-txn-quorum.js/send.js @@ -99,7 +99,7 @@ async function send() { const txnParams = { gasPrice: 0, gasLimit: 4300000, - to: "", + to: null, value: 0, data: initializedDeploy, from: decryptedAccount,