From 6799a06acda641128858184d96360d9373c2ea18 Mon Sep 17 00:00:00 2001 From: Edd Date: Wed, 1 Mar 2023 14:04:54 +0000 Subject: [PATCH] chore(explorer): remove commented out query (#3045) --- .../components/epoch-overview/Epoch.graphql | 26 ------------------- 1 file changed, 26 deletions(-) diff --git a/apps/explorer/src/app/components/epoch-overview/Epoch.graphql b/apps/explorer/src/app/components/epoch-overview/Epoch.graphql index 4f8bd56f5..2474dbbd0 100644 --- a/apps/explorer/src/app/components/epoch-overview/Epoch.graphql +++ b/apps/explorer/src/app/components/epoch-overview/Epoch.graphql @@ -22,29 +22,3 @@ query ExplorerFutureEpoch { } } } - -# query ExplorerEpoch($id: ID!) { -# -##### This could be useful for calculating roughly when a future epoch will -##### occur, but epoch not exist results in a total error -# networkParameter(key: "validators.epoch.length") { -# value -# } -# -##### This could be useful for relating where we are in time, but as above -##### the total failure caused by epoch(id) not existing -##### means this is useful -# currentEpoch: epoch { -# id -# } -# -# epoch(id: $id) { -# id -# timestamps { -# start -# end -# firstBlock -# lastBlock -# } -# } -#}