Simplified display of create/create2 traces
This commit is contained in:
parent
8bfe34850d
commit
a985830c74
|
@ -55,8 +55,6 @@ const TraceInput: React.FC<TraceInputProps> = ({
|
||||||
<>
|
<>
|
||||||
<span>.</span>
|
<span>.</span>
|
||||||
<FunctionSignature callType={t.type} sig={sigText} />
|
<FunctionSignature callType={t.type} sig={sigText} />
|
||||||
</>
|
|
||||||
)}
|
|
||||||
{t.value && !t.value.isZero() && (
|
{t.value && !t.value.isZero() && (
|
||||||
<span className="text-red-700 whitespace-nowrap">
|
<span className="text-red-700 whitespace-nowrap">
|
||||||
{"{"}value: <FormattedBalance value={t.value} /> ETH{"}"}
|
{"{"}value: <FormattedBalance value={t.value} /> ETH{"}"}
|
||||||
|
@ -79,6 +77,8 @@ const TraceInput: React.FC<TraceInputProps> = ({
|
||||||
)}
|
)}
|
||||||
{(!hasParams || !expanded) && <>)</>}
|
{(!hasParams || !expanded) && <>)</>}
|
||||||
</span>
|
</span>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
{hasParams && expanded && (
|
{hasParams && expanded && (
|
||||||
<>
|
<>
|
||||||
|
|
Loading…
Reference in New Issue