Skip to content

Commit

Permalink
2.12.6-fix6
Browse files Browse the repository at this point in the history
  • Loading branch information
niels1286 committed Apr 13, 2022
1 parent c2ef48f commit 4736d8d
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -180,10 +180,13 @@ private void initDB() throws Exception {
List<byte[]> list2;
try {
list2 = RocksDBService.valueList("consensus_agent1");
}catch (Exception e){
} catch (Exception e) {
Log.error(e);
return;
}
if (list2 == null) {
return;
}
for (byte[] arr : list2) {
AgentPo po = new AgentPo();
po.parse(arr, 0);
Expand Down

0 comments on commit 4736d8d

Please sign in to comment.