mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 07:06:42 +00:00
fix(taiko-client): fix an issue in encodeAndCompressTxList (#404)
This commit is contained in:
parent
177750c73e
commit
8d5d308dfb
1 changed files with 1 additions and 1 deletions
|
|
@ -358,7 +358,7 @@ func compress(txListBytes []byte) ([]byte, error) {
|
|||
return nil, err
|
||||
}
|
||||
|
||||
if err := w.Flush(); err != nil {
|
||||
if err := w.Close(); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue