From 9cf50f31671539e34337cb51d4b5d2ab850ed4e5 Mon Sep 17 00:00:00 2001 From: PavelInjective Date: Tue, 3 Dec 2024 21:07:34 +0100 Subject: [PATCH] Fix: update OFAC list URL and filename --- client/chain/ofac.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/chain/ofac.go b/client/chain/ofac.go index e4cc15bc..1bed9db4 100644 --- a/client/chain/ofac.go +++ b/client/chain/ofac.go @@ -10,12 +10,12 @@ import ( ) const ( - DefaultOfacListURL = "https://raw.githubusercontent.com/InjectiveLabs/injective-lists/refs/heads/master/json/wallets/ofac.json" + DefaultOfacListURL = "https://raw.githubusercontent.com/InjectiveLabs/injective-lists/refs/heads/master/json/wallets/ofacAndRestricted.json" ) var ( OfacListPath = "injective_data" - OfacListFilename = "ofac.json" + OfacListFilename = "ofacAndRestricted.json" ) type OfacChecker struct {