From: Brian Warner <warner@allmydata.com>
Date: Wed, 26 Sep 2007 19:20:48 +0000 (-0700)
Subject: client.py: add the missing remote_get_nodeid() method claimed in interfaces.py
X-Git-Tag: allmydata-tahoe-0.6.1~78
X-Git-Url: https://git.rkrishnan.org/components/com_hotproperty/%22doc.html/somewhere?a=commitdiff_plain;h=c10da1e1efd62d82141ecfcd43f444c9cf1cc3ae;p=tahoe-lafs%2Ftahoe-lafs.git

client.py: add the missing remote_get_nodeid() method claimed in interfaces.py
---

diff --git a/src/allmydata/client.py b/src/allmydata/client.py
index 4918fa90..8dbc71a5 100644
--- a/src/allmydata/client.py
+++ b/src/allmydata/client.py
@@ -150,6 +150,8 @@ class Client(node.Node, Referenceable, testutil.PollMixin):
             return self.getServiceNamed(name)
         raise RuntimeError("I am unwilling to give you service %s" % name)
 
+    def remote_get_nodeid(self):
+        return self.nodeid
 
     def get_all_peerids(self):
         if not self.introducer_client: