We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c901a22 commit c106771Copy full SHA for c106771
backend/pkg/executionlayer/transformer.go
@@ -639,7 +639,10 @@ func isBlobTx(txType uint32) bool {
639
}
640
641
func isValidItx(itx *types.Eth1InternalTransaction) bool {
642
- return itx.Path != "0" || itx.Path != "[]" || !bytes.Equal(itx.Value, []byte{0x0})
+ if itx.Path == "[]" || itx.Path == "0" || bytes.Equal(itx.Value, []byte{0x0}) {
643
+ return false
644
+ }
645
+ return true
646
647
648
func getLogTopics(log *types.Eth1Log) []common.Hash {
0 commit comments