aboutsummaryrefslogtreecommitdiffstats
path: root/eth/bind.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 /eth/bind.go
parent1e50f5dd281d28b8db1c65b9e80e53080b86e369 (diff)
downloadgo-tangerine-96dc42d99c5eb1251b9ae049fab3800ecc3ed100.tar.gz
go-tangerine-96dc42d99c5eb1251b9ae049fab3800ecc3ed100.tar.zst
go-tangerine-96dc42d99c5eb1251b9ae049fab3800ecc3ed100.zip
cmd, common, console, eth, release: drop redundant "full"s
Diffstat (limited to 'eth/bind.go')
-rw-r--r--eth/bind.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/bind.go b/eth/bind.go
index 7eb15ca1b..c1366464f 100644
--- a/eth/bind.go
+++ b/eth/bind.go
@@ -42,7 +42,7 @@ type ContractBackend struct {
// NewContractBackend creates a new native contract backend using an existing
// Etheruem object.
-func NewContractBackend(eth *FullNodeService) *ContractBackend {
+func NewContractBackend(eth *Ethereum) *ContractBackend {
return &ContractBackend{
eapi: ethapi.NewPublicEthereumAPI(eth.apiBackend, nil, nil),
bcapi: ethapi.NewPublicBlockChainAPI(eth.apiBackend),