diff options
Diffstat (limited to 'mobile/big.go')
-rw-r--r-- | mobile/big.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile/big.go b/mobile/big.go index 6a358ba28..9a55836c1 100644 --- a/mobile/big.go +++ b/mobile/big.go @@ -78,7 +78,7 @@ func (bi *BigInts) Size() int { } // Get returns the bigint at the given index from the slice. -func (bi *BigInts) Get(index int) (*BigInt, error) { +func (bi *BigInts) Get(index int) (bigint *BigInt, _ error) { if index < 0 || index >= len(bi.bigints) { return nil, errors.New("index out of bounds") } |