diff options
author | zelig <viktor.tron@gmail.com> | 2015-04-20 02:22:15 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2015-04-20 03:57:50 +0800 |
commit | 71c974f3eb080ffcdcf4812f3dd082e668627c8b (patch) | |
tree | df4598bf2b607a6c75b9e0e0385101fee76bbe6f /common | |
parent | e9874cbcc12f5b15ad91a0df396552afe8c71e3e (diff) | |
download | go-tangerine-71c974f3eb080ffcdcf4812f3dd082e668627c8b.tar.gz go-tangerine-71c974f3eb080ffcdcf4812f3dd082e668627c8b.tar.zst go-tangerine-71c974f3eb080ffcdcf4812f3dd082e668627c8b.zip |
fix end to end test import cycle
Diffstat (limited to 'common')
-rw-r--r-- | common/natspec/natspec_e2e_test.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/common/natspec/natspec_e2e_test.go b/common/natspec/natspec_e2e_test.go index 4e0f656f3..30e6e87dc 100644 --- a/common/natspec/natspec_e2e_test.go +++ b/common/natspec/natspec_e2e_test.go @@ -10,11 +10,9 @@ import ( "github.com/ethereum/go-ethereum/accounts" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common/docserver" - "github.com/ethereum/go-ethereum/common/natspec" "github.com/ethereum/go-ethereum/common/resolver" "github.com/ethereum/go-ethereum/core" "github.com/ethereum/go-ethereum/core/state" - //"github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/crypto" "github.com/ethereum/go-ethereum/eth" "github.com/ethereum/go-ethereum/rpc" @@ -100,7 +98,7 @@ func (f *testFrontend) ConfirmTransaction(tx string) bool { if err != nil { f.t.Errorf("Error creating DocServer: %v", err) } - f.lastConfirm = natspec.GetNotice(f.xeth, tx, ds) + f.lastConfirm = GetNotice(f.xeth, tx, ds) } return true } |