Skip to content

Commit f50175a

Browse files
committed
Fix
1 parent a24698a commit f50175a

File tree

1 file changed

+1
-1
lines changed
  • internal/state/indexer/tx/kv

1 file changed

+1
-1
lines changed

Diff for: internal/state/indexer/tx/kv/kv.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ func (txi *TxIndex) Index(results []*abci.TxResult) error {
108108
}
109109
debugutil.PrintStats("TxIndex.Index b.Set(primaryKey(hash), rawBytes)", durations)
110110
t2 := debugutil.NewTimer(fmt.Sprintf("TxIndex.Index WriteSync (txs=%d)", len(results)))
111-
err := b.Write()
111+
err := b.WriteSync()
112112
t2.Stop()
113113
return err
114114
}

0 commit comments

Comments
 (0)