The idea behind the lookup protocol is to find the k closest neighbors to the key and check if any of them has the value corresponding to the queried key. Paper: http://css.csail.mit.edu/6.824/2014/papers/kademlia.pdf
My question is, could a conflict of values arise in this situation? For example, one neighbor says the value is x
and another neighbor says the value is y
. How are such cases resolved?