core, txpool: less allocations when handling transactions (#21232)
* core: use uint64 for total tx costs instead of big.Int
* core: added local tx pool test case
* core, crypto: various allocation savings regarding tx handling
* Update core/tx_list.go
* core: added tx.GasPriceIntCmp for comparison without allocation
adds a method to remove unneeded allocation in comparison to tx.gasPrice
* core: handle pools full of locals better
* core/tests: benchmark for tx_list
* core/txlist, txpool: save a reheap operation, avoid some bigint allocs
Co-authored-by:
Martin Holst Swende <martin@swende.se>
Showing
- common/math/integer.go 5 additions, 5 deletionscommon/math/integer.go
- core/tx_list.go 99 additions, 30 deletionscore/tx_list.go
- core/tx_list_test.go 10 additions, 9 deletionscore/tx_list_test.go
- core/tx_pool.go 13 additions, 5 deletionscore/tx_pool.go
- core/tx_pool_test.go 13 additions, 5 deletionscore/tx_pool_test.go
- core/types/transaction.go 11 additions, 0 deletionscore/types/transaction.go
Loading
Please register or sign in to comment