From facde4f5334d9ccfeb83d0dccda3c01fcc485e66 Mon Sep 17 00:00:00 2001 From: Aaron Fiore Date: Mon, 4 Aug 2025 16:21:24 -0700 Subject: [PATCH] container: fetch: gemini: remove non-alpha char (currency) hack Now supported within flow impl. --- .../internal/fetch/exchanges/internal/exchanges/gemini.php | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/container/src/finance/lib/internal/fetch/exchanges/internal/exchanges/gemini.php b/container/src/finance/lib/internal/fetch/exchanges/internal/exchanges/gemini.php index 34fac92..98d04f3 100644 --- a/container/src/finance/lib/internal/fetch/exchanges/internal/exchanges/gemini.php +++ b/container/src/finance/lib/internal/fetch/exchanges/internal/exchanges/gemini.php @@ -2,7 +2,7 @@ // docker-finance | modern accounting for the power-user // -// Copyright (C) 2021-2024 Aaron Fiore (Founder, Evergreen Crypto LLC) +// Copyright (C) 2021-2025 Aaron Fiore (Founder, Evergreen Crypto LLC) // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -247,11 +247,6 @@ namespace docker_finance\exchanges\internal\exchanges\gemini $stack[$symbol][] = $trade; } } - - // HACK: hledger-flow won't process symbol beginning with number - if ($symbol == "1inchusd") { - $stack[$symbol] = "oneinchusd"; - } } }