Fix staticcall display ot traces
This commit is contained in:
parent
43f0ba0f8d
commit
45bfe9718a
|
@ -159,7 +159,11 @@ export const useTransactionDescription = (
|
|||
if (!fourBytesEntry) {
|
||||
return fourBytesEntry;
|
||||
}
|
||||
if (!fourBytesEntry.signature || !data || !value) {
|
||||
if (
|
||||
!fourBytesEntry.signature ||
|
||||
data === undefined ||
|
||||
value === undefined
|
||||
) {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue