summaryrefslogtreecommitdiff
path: root/service/OneService.cpp
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2017-02-13 09:03:48 -0800
committerAdam Ierymenko <adam.ierymenko@gmail.com>2017-02-13 09:03:48 -0800
commit42f28bce52c3342e3aac68488260a02c71691177 (patch)
tree230f1d73d8ea82ee4804d2dcc982a1c6bbe9a833 /service/OneService.cpp
parentcdc289fa9c5d7d19990c14946ede5f3642e235d2 (diff)
downloadinfinitytier-42f28bce52c3342e3aac68488260a02c71691177.tar.gz
infinitytier-42f28bce52c3342e3aac68488260a02c71691177.zip
Cleanup and make moons (federated roots) a little easier to deal with.
Diffstat (limited to 'service/OneService.cpp')
-rw-r--r--service/OneService.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/service/OneService.cpp b/service/OneService.cpp
index 9a1503e5..6465463b 100644
--- a/service/OneService.cpp
+++ b/service/OneService.cpp
@@ -707,7 +707,7 @@ public:
for(std::vector<std::string>::iterator f(moonsDotD.begin());f!=moonsDotD.end();++f) {
std::size_t dot = f->find_last_of('.');
if ((dot == 16)&&(f->substr(16) == ".moon"))
- _node->orbit(Utils::hexStrToU64(f->substr(0,dot).c_str()));
+ _node->orbit(Utils::hexStrToU64(f->substr(0,dot).c_str()),0);
}
}