mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
4ab08629f6
This commits adds support for postgres database. Currently two fields are stored: the bloom filter and the topic. Only the bloom filter is actually used to query, but potentially we will use also the topic in the future, so easier to separate it now in order to avoid a migration.
10 lines
267 B
Go
10 lines
267 B
Go
// +build windows
|
|
|
|
package pq
|
|
|
|
// sslKeyPermissions checks the permissions on user-supplied ssl key files.
|
|
// The key file should have very little access.
|
|
//
|
|
// libpq does not check key file permissions on Windows.
|
|
func sslKeyPermissions(string) error { return nil }
|