diff options
Diffstat (limited to 'mobile/interface.go')
-rw-r--r-- | mobile/interface.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile/interface.go b/mobile/interface.go index b585b8642..10eac5f72 100644 --- a/mobile/interface.go +++ b/mobile/interface.go @@ -131,7 +131,7 @@ func (i *Interfaces) Size() int { } // Get returns the bigint at the given index from the slice. -func (i *Interfaces) Get(index int) (*Interface, error) { +func (i *Interfaces) Get(index int) (iface *Interface, _ error) { if index < 0 || index >= len(i.objects) { return nil, errors.New("index out of bounds") } |