mirror of
https://github.com/seigler/dash-visualizer
synced 2025-07-27 09:46:09 +00:00
publish: 🐛 Fix privatesend tx display on static blocks
generated from commit bb7b249f6293a60fe6dd62f73cf65c321cdc2587
This commit is contained in:
parent
c107040e1d
commit
e6f103ad01
2 changed files with 8 additions and 2 deletions
|
@ -19048,7 +19048,13 @@ function () {
|
||||||
key: "isPrivateSend",
|
key: "isPrivateSend",
|
||||||
value: function isPrivateSend(components) {
|
value: function isPrivateSend(components) {
|
||||||
return components.every(function (i) {
|
return components.every(function (i) {
|
||||||
return _constants.PSDENOMINATIONS.includes(Object.values(i)[0]);
|
var value = Object.values(i)[0];
|
||||||
|
|
||||||
|
if (typeof value == 'string') {
|
||||||
|
value *= 10000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
return _constants.PSDENOMINATIONS.includes(value);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}]);
|
}]);
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue