Skip to content

Commit

Permalink
fix missed consensus tables (#12863)
Browse files Browse the repository at this point in the history
```
[EROR] [11-25|04:45:46.789] Staged Sync                              err="[3/9 BorHeimdall] label: consensus, table: BorSeparate, mdbx_get: MDBX_BAD_DBI: The specified DBI-handle is invalid or changed by another thread/transaction"
```
  • Loading branch information
AskAlexSharov authored Nov 25, 2024
1 parent e2c441e commit 2ffb4cf
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions erigon-lib/kv/tables.go
Original file line number Diff line number Diff line change
Expand Up @@ -644,10 +644,12 @@ var SentryTables = []string{
Inodes,
NodeRecords,
}
var ConsensusTables = []string{
var ConsensusTables = append([]string{
CliqueSeparate,
CliqueLastSnapshot,
}
},
ChaindataTables..., //TODO: move bor tables from chaintables to `ConsensusTables`
)
var HeimdallTables = []string{}
var PolygonBridgeTables = []string{}
var DownloaderTables = []string{
Expand Down

0 comments on commit 2ffb4cf

Please sign in to comment.