aboutsummaryrefslogtreecommitdiffstats
path: root/mobile/ethereum.go
diff options
context:
space:
mode:
Diffstat (limited to 'mobile/ethereum.go')
-rw-r--r--mobile/ethereum.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile/ethereum.go b/mobile/ethereum.go
index 6e8046ac9..94f707a87 100644
--- a/mobile/ethereum.go
+++ b/mobile/ethereum.go
@@ -93,7 +93,7 @@ func (t *Topics) Size() int {
}
// Get returns the topic list at the given index from the slice.
-func (t *Topics) Get(index int) (*Hashes, error) {
+func (t *Topics) Get(index int) (hashes *Hashes, _ error) {
if index < 0 || index >= len(t.topics) {
return nil, errors.New("index out of bounds")
}