From 52cd407f8bb187d5578343964347370414f0ab45 Mon Sep 17 00:00:00 2001 From: Austin Roberts Date: Mon, 22 Jan 2024 14:24:15 -0600 Subject: [PATCH] Remove unused utlity function --- restricted/types/utils.go | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 restricted/types/utils.go diff --git a/restricted/types/utils.go b/restricted/types/utils.go deleted file mode 100644 index f602f00..0000000 --- a/restricted/types/utils.go +++ /dev/null @@ -1,13 +0,0 @@ -package types - -import ( - "math/big" -) - -// BigMin returns the smaller of x or y. -func BigMin(x, y *big.Int) *big.Int { - if x.Cmp(y) > 0 { - return y - } - return x -} \ No newline at end of file