boolean waitReply = false;
for(Address neighbor: neighbors){
if(!neighbor.equals(from)){
Logger.debug(txnId + ": Sending vote request to " + neighbor);
waitReply = true;
new VoteRequest(txnId).send(neighbor);
}else
Logger.debug(txnId + ": No Forwarding to parent");
}
synchronized (metadata) {