Skip to content

Commit

Permalink
feat(status-page): remove is halted (#13231)
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberhorsey authored Mar 1, 2023
1 parent 7170bd9 commit d3d1c39
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 25 deletions.
14 changes: 0 additions & 14 deletions packages/status-page/src/pages/home/Home.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import { watchHeaderSynced } from "../../utils/watchHeaderSynced";
import { getPendingTransactions } from "../../utils/getPendingTransactions";
import { getBlockFee } from "../../utils/getBlockFee";
import { getIsHalted } from "../../utils/getIsHalted";
import { getAvailableSlots } from "../../utils/getAvailableSlots";
import { getPendingBlocks } from "../../utils/getPendingBlocks";
import { getLastVerifiedBlockId } from "../../utils/getLastVerifiedBlockId";
Expand Down Expand Up @@ -88,19 +87,6 @@
tooltip:
"The current transactions in the mempool where the transaction nonce is not in sequence. They are currently non-processable.",
},
{
statusFunc: getIsHalted,
watchStatusFunc: null,
provider: l1Provider,
contractAddress: l1TaikoAddress,
header: "Is Halted",
intervalInMs: 0,
colorFunc: (value: Status) => {
if (value.toString() === "true") return "red";
return "green";
},
tooltip: "Whether the Taiko smart contract on Layer 1 has been halted.",
},
{
statusFunc: getAvailableSlots,
watchStatusFunc: null,
Expand Down
11 changes: 0 additions & 11 deletions packages/status-page/src/utils/getIsHalted.ts

This file was deleted.

0 comments on commit d3d1c39

Please sign in to comment.