aboutsummaryrefslogtreecommitdiffstats
path: root/common/natspec/natspec_e2e_test.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2016-06-30 18:03:26 +0800
committerPéter Szilágyi <peterke@gmail.com>2016-06-30 18:03:26 +0800
commit96dc42d99c5eb1251b9ae049fab3800ecc3ed100 (patch)
tree54d13e3a4f6e52a46d69a2f78ce1fc59d4beacb3 /common/natspec/natspec_e2e_test.go
parent1e50f5dd281d28b8db1c65b9e80e53080b86e369 (diff)
downloadgo-tangerine-96dc42d99c5eb1251b9ae049fab3800ecc3ed100.tar
go-tangerine-96dc42d99c5eb1251b9ae049fab3800ecc3ed100.tar.gz
go-tangerine-96dc42d99c5eb1251b9ae049fab3800ecc3ed100.tar.bz2
go-tangerine-96dc42d99c5eb1251b9ae049fab3800ecc3ed100.tar.lz
go-tangerine-96dc42d99c5eb1251b9ae049fab3800ecc3ed100.tar.xz
go-tangerine-96dc42d99c5eb1251b9ae049fab3800ecc3ed100.tar.zst
go-tangerine-96dc42d99c5eb1251b9ae049fab3800ecc3ed100.zip
cmd, common, console, eth, release: drop redundant "full"s
Diffstat (limited to 'common/natspec/natspec_e2e_test.go')
-rw-r--r--common/natspec/natspec_e2e_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/natspec/natspec_e2e_test.go b/common/natspec/natspec_e2e_test.go
index ac0bbe784..255260576 100644
--- a/common/natspec/natspec_e2e_test.go
+++ b/common/natspec/natspec_e2e_test.go
@@ -99,7 +99,7 @@ const (
type testFrontend struct {
t *testing.T
- ethereum *eth.FullNodeService
+ ethereum *eth.Ethereum
xeth *xe.XEth
wait chan *big.Int
lastConfirm string
@@ -123,7 +123,7 @@ func (self *testFrontend) ConfirmTransaction(tx string) bool {
return true
}
-func testEth(t *testing.T) (ethereum *eth.FullNodeService, err error) {
+func testEth(t *testing.T) (ethereum *eth.Ethereum, err error) {
tmp, err := ioutil.TempDir("", "natspec-test")
if err != nil {