publish: 🐛 Fix privatesend tx display on static blocks and live loading sequence

generated from commit 0470dc0109
This commit is contained in:
Joshua Seigler 2019-04-08 00:23:07 -04:00
parent d425124a74
commit 86bc712022
2 changed files with 2 additions and 2 deletions

View file

@ -19007,7 +19007,7 @@ function () {
var isMixing = App.isPrivateSend(data.vout);
var tx = {
mixing: isMixing,
instant: data.txlock,
instant: data.txlock || data.vin && data.vin.length <= 4,
value: data.valueOut,
x: parseInt(data.txid.slice(0, 4), 16) / 65536,
y: parseInt(data.txid.slice(4, 8), 16) / 65536,

File diff suppressed because one or more lines are too long