mirror of
				https://git.wownero.com/wownero/wownero.git
				synced 2024-08-15 01:03:23 +00:00 
			
		
		
		
	Start fresh if tx_pool deserialize fails
This commit is contained in:
		
							parent
							
								
									a3f5764869
								
							
						
					
					
						commit
						8e99cee062
					
				
					 1 changed files with 6 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -468,7 +468,10 @@ namespace cryptonote
 | 
			
		|||
    bool res = tools::unserialize_obj_from_file(*this, state_file_path);
 | 
			
		||||
    if(!res)
 | 
			
		||||
    {
 | 
			
		||||
      LOG_PRINT_L0("Failed to load memory pool from file " << state_file_path);
 | 
			
		||||
      LOG_ERROR("Failed to load memory pool from file " << state_file_path);
 | 
			
		||||
 | 
			
		||||
      m_transactions.clear();
 | 
			
		||||
      m_spent_key_images.clear();
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    for (auto it = m_transactions.begin(); it != m_transactions.end(); ) {
 | 
			
		||||
| 
						 | 
				
			
			@ -480,7 +483,8 @@ namespace cryptonote
 | 
			
		|||
      }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    return res;
 | 
			
		||||
    // Ignore deserialization error
 | 
			
		||||
    return true;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  //---------------------------------------------------------------------------------
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue