diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-06-30 18:03:26 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2016-06-30 18:03:26 +0800 |
commit | 96dc42d99c5eb1251b9ae049fab3800ecc3ed100 (patch) | |
tree | 54d13e3a4f6e52a46d69a2f78ce1fc59d4beacb3 /eth/bind.go | |
parent | 1e50f5dd281d28b8db1c65b9e80e53080b86e369 (diff) | |
download | dexon-96dc42d99c5eb1251b9ae049fab3800ecc3ed100.tar.gz dexon-96dc42d99c5eb1251b9ae049fab3800ecc3ed100.tar.zst dexon-96dc42d99c5eb1251b9ae049fab3800ecc3ed100.zip |
cmd, common, console, eth, release: drop redundant "full"s
Diffstat (limited to 'eth/bind.go')
-rw-r--r-- | eth/bind.go | 2 |
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), |