aboutsummaryrefslogtreecommitdiffstats
path: root/ethereum
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-05-20 23:49:12 +0800
committerobscuren <geffobscura@gmail.com>2014-05-20 23:49:12 +0800
commitde1dfae7170a946d255a9b4932e08f887d48947c (patch)
treedb414d8bba2c8e08a2264cadcc5f880a61e136c8 /ethereum
parent41989693024b45d069b6d5fd6b700b27ec377b0c (diff)
downloaddexon-de1dfae7170a946d255a9b4932e08f887d48947c.tar.gz
dexon-de1dfae7170a946d255a9b4932e08f887d48947c.tar.zst
dexon-de1dfae7170a946d255a9b4932e08f887d48947c.zip
Forked version of otto so we can support lowerCased methods
Diffstat (limited to 'ethereum')
-rw-r--r--ethereum/javascript_runtime.go2
-rw-r--r--ethereum/repl.go2
-rw-r--r--ethereum/repl_darwin.go2
3 files changed, 3 insertions, 3 deletions
diff --git a/ethereum/javascript_runtime.go b/ethereum/javascript_runtime.go
index b06fb9460..cc8fe370f 100644
--- a/ethereum/javascript_runtime.go
+++ b/ethereum/javascript_runtime.go
@@ -6,7 +6,7 @@ import (
"github.com/ethereum/eth-go/ethchain"
"github.com/ethereum/eth-go/ethpub"
"github.com/ethereum/eth-go/ethutil"
- "github.com/robertkrimen/otto"
+ "github.com/obscuren/otto"
)
type JSRE struct {
diff --git a/ethereum/repl.go b/ethereum/repl.go
index c0b63c0a5..29d38afef 100644
--- a/ethereum/repl.go
+++ b/ethereum/repl.go
@@ -4,7 +4,7 @@ import (
"fmt"
"github.com/ethereum/eth-go"
"github.com/ethereum/eth-go/ethpub"
- "github.com/robertkrimen/otto"
+ "github.com/obscuren/otto"
)
type Repl interface {
diff --git a/ethereum/repl_darwin.go b/ethereum/repl_darwin.go
index 87da3df1d..cf6e24e18 100644
--- a/ethereum/repl_darwin.go
+++ b/ethereum/repl_darwin.go
@@ -8,7 +8,7 @@ package main
import "C"
import (
- "github.com/robertkrimen/otto"
+ "github.com/obscuren/otto"
"strings"
"unsafe"
)