From deb352cf0300a20845af675f9e4b5a512a087ea9 Mon Sep 17 00:00:00 2001 From: sairaj mote Date: Mon, 25 Sep 2023 03:11:30 +0530 Subject: [PATCH] Update index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 34e4342..79c6e33 100644 --- a/index.html +++ b/index.html @@ -2857,7 +2857,7 @@ if (type) { filteredSmartContracts = filteredSmartContracts.filter(sc => { if (type === 'external-trigger') { - return sc.status !== 'active'; // only inactive contracts can be triggered externally + return sc.status === 'expired'; // only inactive contracts can be triggered externally } else if (type === 'continuos-event' && dynamic) { return sc.status === 'active' && sc.contractType === type && sc.oracle_address; } else {