Skip to content
This repository has been archived by the owner on Sep 23, 2023. It is now read-only.

Commit

Permalink
Change blobslots
Browse files Browse the repository at this point in the history
  • Loading branch information
somnathb1 committed Sep 16, 2023
1 parent e5deeda commit 55ae513
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions txpool/txpoolcfg/txpoolcfg.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ type Config struct {
QueuedSubPoolLimit int
MinFeeCap uint64
AccountSlots uint64 // Number of executable transaction slots guaranteed per account
BlobSlots uint64 // Number of blobs allowed per account
BlobSlots uint64 // Total number of blobs (not txs) allowed per account
PriceBump uint64 // Price bump percentage to replace an already existing transaction
BlobPriceBump uint64 //Price bump percentage to replace an existing 4844 blob tx (type-3)
OverrideCancunTime *big.Int
Expand All @@ -61,7 +61,7 @@ var DefaultConfig = Config{

MinFeeCap: 1,
AccountSlots: 16, //TODO: to choose right value (16 to be compatible with Geth)
BlobSlots: 24, // Number of blobs (not txs) allowed per account
BlobSlots: 48, // Default for a total of 8 txs for 6 blobs each - for hive tests
PriceBump: 10, // Price bump percentage to replace an already existing transaction
BlobPriceBump: 100,
}
Expand Down

0 comments on commit 55ae513

Please sign in to comment.