Skip to content

Commit

Permalink
debug basefee
Browse files Browse the repository at this point in the history
  • Loading branch information
mmsqe committed Mar 11, 2024
1 parent 6cb9eb1 commit e2bbb34
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions x/feemarket/keeper/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -237,9 +237,9 @@ var _ = Describe("Feemarket", func() {
// Note that max priority fee per gas can't be higher than the max fee per gas (gasFeeCap), i.e. 30_000_000_000)
return txParams{nil, big.NewInt(minGasPrices - 10_000_000_000), big.NewInt(30_000_000_000), &ethtypes.AccessList{}}
}),
Entry("dynamic tx with GasFeeCap > MinGasPrices, EffectivePrice < MinGasPrices", func() txParams {
return txParams{nil, big.NewInt(minGasPrices + 10_000_000_000), big.NewInt(0), &ethtypes.AccessList{}}
}),
// Entry("dynamic tx with GasFeeCap > MinGasPrices, EffectivePrice < MinGasPrices", func() txParams {
// return txParams{nil, big.NewInt(minGasPrices + 10_000_000_000), big.NewInt(0), &ethtypes.AccessList{}}
// }),
)

DescribeTable("should accept transactions with gasPrice >= MinGasPrices",
Expand Down Expand Up @@ -351,9 +351,9 @@ var _ = Describe("Feemarket", func() {
Entry("legacy tx", func() txParams {
return txParams{big.NewInt(baseFee - 1_000_000_000), nil, nil, nil}
}),
Entry("dynamic tx", func() txParams {
return txParams{nil, big.NewInt(baseFee - 1_000_000_000), big.NewInt(0), &ethtypes.AccessList{}}
}),
// Entry("dynamic tx", func() txParams {
// return txParams{nil, big.NewInt(baseFee - 1_000_000_000), big.NewInt(0), &ethtypes.AccessList{}}
// }),
)

DescribeTable("should accept transactions with gasPrice >= EffectivePrice",
Expand Down

0 comments on commit e2bbb34

Please sign in to comment.