@@ -102,7 +102,7 @@ func (idx *BTCLightClientIndexer) batchSync(lastIndexPoint int64) (
102
102
103
103
// if there are new hex address in current block, collect their validator hex address to save in database
104
104
isNewReporter := false
105
- newRepoterInfoList := make ([ ]indexermodel.VigilanteInfo , 0 )
105
+ newReporterMap := make (map [ string ]indexermodel.VigilanteInfo , 0 )
106
106
for _ , bie := range bieSummaryList {
107
107
if bie .skip {
108
108
continue
@@ -113,23 +113,29 @@ func (idx *BTCLightClientIndexer) batchSync(lastIndexPoint int64) (
113
113
_ , exist := idx .Vim [e .ReporterAddress ]
114
114
if ! exist {
115
115
idx .Debugf ("the reporter %s address isn't in current validator info table, the address will be added into the meta table" , e .ReporterAddress )
116
- newRepoterInfoList = append (newRepoterInfoList , indexermodel.VigilanteInfo {
116
+
117
+ newReporterMap [e .ReporterAddress ] = indexermodel.VigilanteInfo {
117
118
ChainInfoID : idx .ChainInfoID ,
118
119
OperatorAddress : e .ReporterAddress ,
119
120
Moniker : "Babylon Vigilante Repoter" ,
120
- })
121
+ }
121
122
isNewReporter = true
122
123
}
123
124
}
124
125
}
125
126
126
127
// this logic will be progressed only when there are new tendermint validators in this block
127
128
if isNewReporter {
128
- idx .Debugf ("insert new vigilante reporters: %d" , len (newRepoterInfoList ))
129
+ idx .Debugf ("insert new vigilante reporters: %d" , len (newReporterMap ))
130
+ newRepoterInfoList := make ([]indexermodel.VigilanteInfo , 0 )
131
+ for _ , v := range newReporterMap {
132
+ newRepoterInfoList = append (newRepoterInfoList , v )
133
+ }
129
134
err := idx .InsertVigilanteInfoList (newRepoterInfoList )
130
135
if err != nil {
131
136
// NOTE: fetch again validator_info list, actually already inserted the list by other indexer service
132
137
idx .FetchValidatorInfoList ()
138
+ idx .Errorf ("new reporter list: %v" , newRepoterInfoList )
133
139
return lastIndexPoint , errors .Wrap (err , "failed to insert new reporter list" )
134
140
}
135
141
0 commit comments