mirror of
https://github.com/mempool/mempool.git
synced 2025-04-07 19:38:32 +02:00
Only return "initial block amount" on init, and treat high fees in empty blocks as overpaid.
This commit is contained in:
parent
abf74c1aaf
commit
8a5887e890
@ -70,7 +70,7 @@ class WebsocketHandler {
|
||||
client.send(JSON.stringify({
|
||||
'mempoolInfo': memPool.getMempoolInfo(),
|
||||
'vBytesPerSecond': memPool.getVBytesPerSecond(),
|
||||
'blocks': _blocks.slice(config.INITIAL_BLOCK_AMOUNT),
|
||||
'blocks': _blocks.slice(Math.max(_blocks.length - config.INITIAL_BLOCK_AMOUNT, 0)),
|
||||
'conversions': fiatConversion.getTickers()['BTCUSD'],
|
||||
'mempool-blocks': mempoolBlocks.getMempoolBlocks(),
|
||||
'git-commit': this.latestGitCommitHash
|
||||
|
@ -98,12 +98,19 @@ export class TransactionComponent implements OnInit, OnDestroy {
|
||||
.pipe(filter((block) => block.height === this.tx.status.block_height))
|
||||
.subscribe((block) => {
|
||||
const feePervByte = this.tx.fee / (this.tx.weight / 4);
|
||||
let medianFee = block.feeRange[Math.round(block.feeRange.length * 0.5)];
|
||||
|
||||
if (feePervByte <= block.feeRange[Math.round(block.feeRange.length * 0.5)]) {
|
||||
// Block not filled
|
||||
if (block.weight < 4000000 * 0.95) {
|
||||
medianFee = 1;
|
||||
}
|
||||
|
||||
this.overpaidTimes = Math.round(feePervByte / block.medianFee);
|
||||
|
||||
if (feePervByte <= medianFee || this.overpaidTimes < 2) {
|
||||
this.feeRating = 1;
|
||||
} else {
|
||||
this.feeRating = 2;
|
||||
this.overpaidTimes = Math.round(feePervByte / block.medianFee);
|
||||
if (this.overpaidTimes > 10) {
|
||||
this.feeRating = 3;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user