From efe9d55ab2a55c0d7465a3de51acb3a7173a1d1a Mon Sep 17 00:00:00 2001 From: Chim Kan Date: Thu, 24 Aug 2017 12:03:27 -0400 Subject: Update on the example for BlindAction In the Mist app, the Blind Action contract cannot compile because it cannot accept implicit conversion of integer to byte32. I just added the conversion method byte32 in line 470 for bid.blindedBid. --- docs/solidity-by-example.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/solidity-by-example.rst b/docs/solidity-by-example.rst index 88eaadd5..ca6b970c 100644 --- a/docs/solidity-by-example.rst +++ b/docs/solidity-by-example.rst @@ -467,7 +467,7 @@ high or low invalid bids. } // Make it impossible for the sender to re-claim // the same deposit. - bid.blindedBid = 0; + bid.blindedBid = bytes32(0); } msg.sender.transfer(refund); } -- cgit