···3939 return nil, fmt.Errorf("failed to start jetstream: %w", err)
4040 }
41414242- // Check if the knot knows about any DIDs;
4242+ // Check if the knot knows about any Dids;
4343 // if it does, it is already initialized and we can repopulate the
4444 // Jetstream subscriptions.
4545- dids, err := db.GetAllDIDs()
4545+ dids, err := db.GetAllDids()
4646 if err != nil {
4747- return nil, fmt.Errorf("failed to get all DIDs: %w", err)
4747+ return nil, fmt.Errorf("failed to get all Dids: %w", err)
4848 }
4949 if len(dids) > 0 {
5050 h.knotInitialized = true
···4747 j.triggerReconnect()
4848}
49495050-// UpdateDids updates the DIDs list and triggers a reconnection
5050+// UpdateDids updates the Dids list and triggers a reconnection
5151func (j *JetstreamClient) UpdateDids(dids []string) {
5252 j.mu.Lock()
5353 j.dids = dids