From 8872657bbda5f843c5fea26d5f4741f063e39944 Mon Sep 17 00:00:00 2001
From: Chris Martin <ch.martin@gmail.com>
Date: Thu, 2 Jun 2016 11:09:13 -0400
Subject: [PATCH] readme: runCode `exception` is 0/1, not bool

See #70
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 45369280853..b729f0a1cb9 100644
--- a/README.md
+++ b/README.md
@@ -103,7 +103,7 @@ Runs EVM code
   - `suicides` - an `Array` of accounts that have suicided.
   - `suicideTo` - the account that the suicide refund should go to.
   - `logs` - an `Array` of logs that the contract emitted.
-  - `exception` - a `boolean`, whether or not the contract encountered an exception
+  - `exception` - `0` on success, or `1` is the contract encountered an exception
   - `exceptionError` - a `String` describing the exception if there was one.
   - `return` - a `Buffer` containing the value that was returned by the contract