diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-07-05 00:28:30 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-07-05 00:28:30 +0800 |
commit | cd4cc309ae4ead756cbe58ad564b029e874d9832 (patch) | |
tree | 4ee1da5ab9196aabf516369cb45c96c1fad444ad /rpc | |
parent | 3be9046c21920abffa3c5ec81d5aabea8e3bab73 (diff) | |
download | go-tangerine-cd4cc309ae4ead756cbe58ad564b029e874d9832.tar.gz go-tangerine-cd4cc309ae4ead756cbe58ad564b029e874d9832.tar.zst go-tangerine-cd4cc309ae4ead756cbe58ad564b029e874d9832.zip |
Remove redundant function
Diffstat (limited to 'rpc')
-rw-r--r-- | rpc/api/parsing.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpc/api/parsing.go b/rpc/api/parsing.go index c7edf4325..70e9bf942 100644 --- a/rpc/api/parsing.go +++ b/rpc/api/parsing.go @@ -413,7 +413,7 @@ type ReceiptRes struct { Logs *[]interface{} `json:logs` } -func NewReceiptRes(rec *types.ReceiptForStorage) *ReceiptRes { +func NewReceiptRes(rec *types.Receipt) *ReceiptRes { if rec == nil { return nil } |