From 50362950a2acb964f5d51f87133f9e9d6bb8e831 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrik=20Karlstr=C3=B6m?= Date: Mon, 13 Aug 2018 14:08:20 +0200 Subject: [PATCH] Fix inconsistent parameter type bug --- abios_sdk.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abios_sdk.go b/abios_sdk.go index 0309e95..a609019 100644 --- a/abios_sdk.go +++ b/abios_sdk.go @@ -36,7 +36,7 @@ const ( // AbiosSdk defines the interface of an implementation of a SDK targeting the Abios endpoints. type AbiosSdk interface { - SetRate(second, minute int) + SetRate(second, minute uint) Games(params Parameters) (GameStructPaginated, *ErrorStruct) Series(params Parameters) (SeriesStructPaginated, *ErrorStruct) SeriesById(id int64, params Parameters) (SeriesStruct, *ErrorStruct)