Commit b201e310 authored by Igor Stuev's avatar Igor Stuev Committed by GitHub

Merge pull request #911 from blockscout/bugfix/raw-trace-skeleton

bugfix: tx raw trace infinite skeleton
parents 58144496 d6a940ad
...@@ -37,7 +37,7 @@ const TxRawTrace = () => { ...@@ -37,7 +37,7 @@ const TxRawTrace = () => {
const channel = useSocketChannel({ const channel = useSocketChannel({
topic: `transactions:${ hash }`, topic: `transactions:${ hash }`,
isDisabled: !hash || !txInfo.isPlaceholderData || !txInfo.data?.status, isDisabled: !hash || txInfo.isPlaceholderData || !txInfo.data?.status,
onJoin: () => setIsSocketOpen(true), onJoin: () => setIsSocketOpen(true),
}); });
useSocketMessage({ useSocketMessage({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment