set larger number for txs

This commit is contained in:
liangping 2022-08-25 15:05:53 +08:00
parent 07bd6ee4b1
commit 3f6c476cec

View File

@ -191,7 +191,7 @@ export default {
tx.setHash(txs[i])
if (direction === 'head') {
this.txs.unshift(tx)
if (this.txs.length > 100) {
if (this.txs.length > 200) {
this.txs.pop()
}
} else if (this.txs.length < 100) {