From b4060da9eb717f43346f24822f5b25c3385a8519 Mon Sep 17 00:00:00 2001
From: zelig <viktor.tron@gmail.com>
Date: Mon, 16 Mar 2015 22:48:54 +0700
Subject: ethutil -> common

---
 jsre/jsre.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'jsre/jsre.go')

diff --git a/jsre/jsre.go b/jsre/jsre.go
index 7ae5be742..31ea955e6 100644
--- a/jsre/jsre.go
+++ b/jsre/jsre.go
@@ -5,7 +5,7 @@ import (
 	"github.com/obscuren/otto"
 	"io/ioutil"
 
-	"github.com/ethereum/go-ethereum/ethutil"
+	"github.com/ethereum/go-ethereum/common"
 )
 
 /*
@@ -37,7 +37,7 @@ func New(assetPath string) *JSRE {
 // Exec(file) loads and runs the contents of a file
 // if a relative path is given, the jsre's assetPath is used
 func (self *JSRE) Exec(file string) error {
-	return self.exec(ethutil.AbsolutePath(self.assetPath, file))
+	return self.exec(common.AbsolutePath(self.assetPath, file))
 }
 
 func (self *JSRE) exec(path string) error {
-- 
cgit v1.2.3