cmd/devp2p: fix lint

This commit is contained in:
Felix Lange 2020-01-17 11:02:22 +01:00
parent 577c7602dc
commit 6e8ea88338

View file

@ -274,7 +274,7 @@ func newTXTChange(action, name string, ttl int64, values []string) *route53.Chan
}
r.SetType("TXT")
r.SetName(name)
r.SetTTL(int64(ttl))
r.SetTTL(ttl)
r.SetResourceRecords(rrs)
c.SetAction(action)
c.SetResourceRecordSet(&r)