From b77dd6881ab03b4d769064b89d88128f9f99db88 Mon Sep 17 00:00:00 2001 From: mkwcat Date: Sat, 4 Nov 2023 07:23:38 -0400 Subject: [PATCH] SAKE: Fix MKW ownerid filter to be signed --- sake/storage.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sake/storage.go b/sake/storage.go index 8bd525e..1b3a2c7 100644 --- a/sake/storage.go +++ b/sake/storage.go @@ -343,7 +343,7 @@ func searchForRecords(moduleName string, request StorageSearchForRecords) *Stora return &errorResponse } - ownerId, err := strconv.ParseUint(match[1], 10, 32) + ownerId, err := strconv.ParseInt(match[1], 10, 32) if err != nil { logging.Error(moduleName, "Invalid owner ID") return &errorResponse