2
0
mirror of https://github.com/status-im/status-go.git synced 2025-01-12 07:35:02 +00:00
2021-02-26 15:35:43 +01:00

7 lines
187 B
Go

package protocol
func (m *Messenger) ENSVerified(pubkey, ensName string) error {
clock := m.getTimesource().GetCurrentTime()
return m.ensVerifier.ENSVerified(pubkey, ensName, clock)
}