2
0
mirror of https://github.com/status-im/status-go.git synced 2025-01-12 23:55:03 +00:00

7 lines
187 B
Go
Raw Normal View History

2021-01-11 11:32:51 +01:00
package protocol
func (m *Messenger) ENSVerified(pubkey, ensName string) error {
clock := m.getTimesource().GetCurrentTime()
return m.ensVerifier.ENSVerified(pubkey, ensName, clock)
}