Skip to content

Commit cfb19df

Browse files
authored
Merge pull request ethereum#4 from 0rac1e/symbiosis/master
skip tx with not supported types for zksync
2 parents 062e95e + c13038d commit cfb19df

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

core/types/transaction_marshalling.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,9 @@ func (t *Transaction) UnmarshalJSON(input []byte) error {
264264
}
265265

266266
default:
267+
if dec.ChainID.ToInt().Uint64() == 324 {
268+
return nil
269+
}
267270
return ErrTxTypeNotSupported
268271
}
269272

0 commit comments

Comments
 (0)