@@ -1500,7 +1500,7 @@ func (d *Downloader) importBlockResults(results []*fetchResult) error {
15001500	)
15011501	blocks  :=  make ([]* types.Block , len (results ))
15021502	for  i , result  :=  range  results  {
1503- 		blocks [i ] =  types .NewBlockWithHeader (result .Header ).WithBody (result .body ()). WithWithdrawals ( result . Withdrawals ) 
1503+ 		blocks [i ] =  types .NewBlockWithHeader (result .Header ).WithBody (result .body ())
15041504	}
15051505	// Downloaded blocks are always regarded as trusted after the 
15061506	// transition. Because the downloaded chain is guided by the 
@@ -1718,7 +1718,7 @@ func (d *Downloader) commitSnapSyncData(results []*fetchResult, stateSync *state
17181718	blocks  :=  make ([]* types.Block , len (results ))
17191719	receipts  :=  make ([]types.Receipts , len (results ))
17201720	for  i , result  :=  range  results  {
1721- 		blocks [i ] =  types .NewBlockWithHeader (result .Header ).WithBody (result .body ()). WithWithdrawals ( result . Withdrawals ) 
1721+ 		blocks [i ] =  types .NewBlockWithHeader (result .Header ).WithBody (result .body ())
17221722		receipts [i ] =  result .Receipts 
17231723	}
17241724	if  index , err  :=  d .blockchain .InsertReceiptChain (blocks , receipts , d .ancientLimit ); err  !=  nil  {
@@ -1729,7 +1729,7 @@ func (d *Downloader) commitSnapSyncData(results []*fetchResult, stateSync *state
17291729}
17301730
17311731func  (d  * Downloader ) commitPivotBlock (result  * fetchResult ) error  {
1732- 	block  :=  types .NewBlockWithHeader (result .Header ).WithBody (result .body ()). WithWithdrawals ( result . Withdrawals ) 
1732+ 	block  :=  types .NewBlockWithHeader (result .Header ).WithBody (result .body ())
17331733	log .Debug ("Committing snap sync pivot as new head" , "number" , block .Number (), "hash" , block .Hash ())
17341734
17351735	// Commit the pivot block as the new head, will require full sync from here on 
0 commit comments