Hide effective rate on tooltip where irrelevant

This commit is contained in:
Mononaut
2024-03-03 16:40:28 +00:00
parent 1deacb9996
commit 8626846264
3 changed files with 6 additions and 2 deletions

View File

@@ -59,7 +59,7 @@ export default class TxView implements TransactionStripped {
this.acc = tx.acc;
this.rate = tx.rate;
this.status = tx.status;
this.bigintFlags = tx.flags ? (BigInt(tx.flags) ^ (this.acc ? TransactionFlags.acceleration : 0n)): 0n;
this.bigintFlags = tx.flags ? (BigInt(tx.flags) | (this.acc ? TransactionFlags.acceleration : 0n)): 0n;
this.initialised = false;
this.vertexArray = scene.vertexArray;