diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-01-06 21:42:03 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-06 21:42:03 +0800 |
commit | 8f9daaa3ba71c3b6bdcc24adfdc987e6f3a2e184 (patch) | |
tree | 92a336065bddcd620798e8f552432e3ed62ee14a /internal | |
parent | e0ee0cc66a4416edd47232649f4d4bca4a5e3c07 (diff) | |
parent | d3b751e4d94f95f6cc89544852f2d5811e075665 (diff) | |
download | dexon-8f9daaa3ba71c3b6bdcc24adfdc987e6f3a2e184.tar.gz dexon-8f9daaa3ba71c3b6bdcc24adfdc987e6f3a2e184.tar.zst dexon-8f9daaa3ba71c3b6bdcc24adfdc987e6f3a2e184.zip |
Merge pull request #3518 from fjl/ethclient-dependency-cleanup
core/types: dependency cleanup
Diffstat (limited to 'internal')
-rw-r--r-- | internal/ethapi/api.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/ethapi/api.go b/internal/ethapi/api.go index c4fceb5bc..4b9ce068f 100644 --- a/internal/ethapi/api.go +++ b/internal/ethapi/api.go @@ -963,7 +963,7 @@ func (s *PublicTransactionPoolAPI) GetTransactionReceipt(txHash common.Hash) (ma "logsBloom": receipt.Bloom, } if receipt.Logs == nil { - fields["logs"] = []vm.Logs{} + fields["logs"] = [][]*types.Log{} } // If the ContractAddress is 20 0x0 bytes, assume it is not a contract creation if receipt.ContractAddress != (common.Address{}) { |