aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2014-11-13 05:08:56 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2014-11-13 05:08:56 +0800
commit461324a801afde2a9fe92b8303e510fd7e02b1f2 (patch)
tree4cb481cf9d76c15d394dff6c699eeaf5d8cb5380
parentfa59db7595645f1ea9465cf46690379130c89370 (diff)
downloadgo-tangerine-461324a801afde2a9fe92b8303e510fd7e02b1f2.tar
go-tangerine-461324a801afde2a9fe92b8303e510fd7e02b1f2.tar.gz
go-tangerine-461324a801afde2a9fe92b8303e510fd7e02b1f2.tar.bz2
go-tangerine-461324a801afde2a9fe92b8303e510fd7e02b1f2.tar.lz
go-tangerine-461324a801afde2a9fe92b8303e510fd7e02b1f2.tar.xz
go-tangerine-461324a801afde2a9fe92b8303e510fd7e02b1f2.tar.zst
go-tangerine-461324a801afde2a9fe92b8303e510fd7e02b1f2.zip
Remove references to mutan
obscuren/mutan is deprecated
-rw-r--r--vm/vm_test.go14
1 files changed, 7 insertions, 7 deletions
diff --git a/vm/vm_test.go b/vm/vm_test.go
index f5d77cbff..0e1f2f93d 100644
--- a/vm/vm_test.go
+++ b/vm/vm_test.go
@@ -14,7 +14,7 @@ import (
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/trie"
- "github.com/obscuren/mutan"
+ // "github.com/obscuren/mutan"
)
type TestEnv struct{}
@@ -67,9 +67,9 @@ func setup(level logger.LogLevel, typ Type) (*Closure, VirtualMachine) {
var big9 = ethutil.Hex2Bytes("0000000000000000000000000000000000000000000000000000000000000009")
func TestDebugVm(t *testing.T) {
- if mutan.Version < "0.6" {
- t.Skip("skipping for mutan version", mutan.Version, " < 0.6")
- }
+ // if mutan.Version < "0.6" {
+ // t.Skip("skipping for mutan version", mutan.Version, " < 0.6")
+ // }
closure, vm := setup(logger.DebugLevel, DebugVmTy)
ret, _, e := closure.Call(vm, nil)
@@ -82,9 +82,9 @@ func TestDebugVm(t *testing.T) {
}
func TestVm(t *testing.T) {
- if mutan.Version < "0.6" {
- t.Skip("skipping for mutan version", mutan.Version, " < 0.6")
- }
+ // if mutan.Version < "0.6" {
+ // t.Skip("skipping for mutan version", mutan.Version, " < 0.6")
+ // }
closure, vm := setup(logger.DebugLevel, StandardVmTy)
ret, _, e := closure.Call(vm, nil)