Browse Source

Forked version of otto so we can support lowerCased methods

obscuren 11 years ago
parent
commit
de1dfae717
3 changed files with 3 additions and 3 deletions
  1. 1 1
      ethereum/javascript_runtime.go
  2. 1 1
      ethereum/repl.go
  3. 1 1
      ethereum/repl_darwin.go

+ 1 - 1
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 {

+ 1 - 1
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 {

+ 1 - 1
ethereum/repl_darwin.go

@@ -8,7 +8,7 @@ package main
 import "C"
 
 import (
-	"github.com/robertkrimen/otto"
+	"github.com/obscuren/otto"
 	"strings"
 	"unsafe"
 )