(pubkey: Pubkey, vanished: boolean, client: DatabaseClient = this.dbClient)
| 69 | } |
| 70 | |
| 71 | public setVanished(pubkey: Pubkey, vanished: boolean, client: DatabaseClient = this.dbClient): Promise<number> { |
| 72 | return this.upsertVanishState(pubkey, vanished, client) |
| 73 | } |
| 74 | |
| 75 | private upsertVanishState(pubkey: Pubkey, isVanished: boolean, client: DatabaseClient): Promise<number> { |
| 76 | logger('upsert vanish state for %s: %o', pubkey, isVanished) |
nothing calls this directly
no test coverage detected