Skip to content

Commit

Permalink
PR fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
swift1337 committed Dec 2, 2024
1 parent 72de540 commit a2b3add
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 3 additions & 2 deletions e2e/e2etests/test_eth_withdraw.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,9 @@ func TestEtherWithdraw(r *runner.E2ERunner, args []string) {

utils.RequireCCTXStatus(r, cctx, crosschaintypes.CctxStatus_OutboundMined)

withdrawalReceipt := mustFetchEthReceipt(r, cctx)
require.Equal(r, uint8(ethtypes.DynamicFeeTxType), withdrawalReceipt.Type, "receipt type mismatch")
//Skipped due to https://github.com/zeta-chain/node/issues/3221
//withdrawalReceipt := mustFetchEthReceipt(r, cctx)
//require.Equal(r, uint8(ethtypes.DynamicFeeTxType), withdrawalReceipt.Type, "receipt type mismatch")

r.Logger.Info("TestEtherWithdraw completed")
}
Expand Down
6 changes: 5 additions & 1 deletion zetaclient/chains/evm/observer/observer.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,11 @@ type Observer struct {

// priorityFeeConfig is the configuration for priority fee
type priorityFeeConfig struct {
checked bool
// checked indicates whether the observer checked
// this EVM chain for EIP-1559 (further checks are cached)
checked bool

// supported indicates whether this EVM chain supports EIP-1559
supported bool
}

Expand Down

0 comments on commit a2b3add

Please sign in to comment.