From fc441ec6c4edaf2e7c728726881895ab6dbf8ab4 Mon Sep 17 00:00:00 2001 From: chris-j-h <39617426+chris-j-h@users.noreply.github.com> Date: Tue, 23 Jul 2019 16:19:01 +0100 Subject: [PATCH] Use first account instead of coinbase in quorum ex docs (#783) This command fails with unknown account err when using istanbul --- docs/Getting Started/7Nodes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Getting Started/7Nodes.md b/docs/Getting Started/7Nodes.md index 3041073c1..22f2e22c2 100644 --- a/docs/Getting Started/7Nodes.md +++ b/docs/Getting Started/7Nodes.md @@ -102,7 +102,7 @@ Next we'll have Node 1 set the state to the value `4` and verify only nodes 1 an In terminal window 1 (Node 1): ``` javascript -> private.set(4,{from:eth.coinbase,privateFor:["ROAZBWtSacxXQrOe3FGAqJDyJjFePR5ce4TSIzmJ0Bc="]}); +> private.set(4,{from:eth.accounts[0],privateFor:["ROAZBWtSacxXQrOe3FGAqJDyJjFePR5ce4TSIzmJ0Bc="]}); "0xacf293b491cccd1b99d0cfb08464a68791cc7b5bc14a9b6e4ff44b46889a8f70" ``` You can check the log files in `7nodes/qdata/logs/` to see each node validating the block with this new private transaction. Once the block containing the transaction has been validated we can once again check the state from each node 1, 4, and 7.