@@ -73,7 +73,7 @@ runUnitTests()
7373void
7474createKeyFile (boost::filesystem::path const & keyFile)
7575{
76- using namespace ripple ;
76+ using namespace xrpl ;
7777
7878 if (exists (keyFile))
7979 throw std::runtime_error (
@@ -89,7 +89,7 @@ createKeyFile(boost::filesystem::path const& keyFile)
8989void
9090createToken (boost::filesystem::path const & keyFile)
9191{
92- using namespace ripple ;
92+ using namespace xrpl ;
9393
9494 auto keys = ValidatorKeys::make_ValidatorKeys (keyFile);
9595
@@ -123,7 +123,7 @@ createToken(boost::filesystem::path const& keyFile)
123123void
124124createRevocation (boost::filesystem::path const & keyFile)
125125{
126- using namespace ripple ;
126+ using namespace xrpl ;
127127
128128 auto keys = ValidatorKeys::make_ValidatorKeys (keyFile);
129129
@@ -153,7 +153,7 @@ createRevocation(boost::filesystem::path const& keyFile)
153153void
154154attestDomain (ripple::ValidatorKeys const & keys)
155155{
156- using namespace ripple ;
156+ using namespace xrpl ;
157157
158158 if (keys.domain ().empty ())
159159 {
@@ -180,7 +180,7 @@ attestDomain(ripple::ValidatorKeys const& keys)
180180void
181181attestDomain (boost::filesystem::path const & keyFile)
182182{
183- using namespace ripple ;
183+ using namespace xrpl ;
184184
185185 auto keys = ValidatorKeys::make_ValidatorKeys (keyFile);
186186
@@ -194,7 +194,7 @@ attestDomain(boost::filesystem::path const& keyFile)
194194void
195195setDomain (std::string const & domain, boost::filesystem::path const & keyFile)
196196{
197- using namespace ripple ;
197+ using namespace xrpl ;
198198
199199 auto keys = ValidatorKeys::make_ValidatorKeys (keyFile);
200200
@@ -246,7 +246,7 @@ setDomain(std::string const& domain, boost::filesystem::path const& keyFile)
246246void
247247signData (std::string const & data, boost::filesystem::path const & keyFile)
248248{
249- using namespace ripple ;
249+ using namespace xrpl ;
250250
251251 if (data.empty ())
252252 throw std::runtime_error (
@@ -266,7 +266,7 @@ generateManifest(
266266 std::string const & type,
267267 boost::filesystem::path const & keyFile)
268268{
269- using namespace ripple ;
269+ using namespace xrpl ;
270270
271271 auto keys = ValidatorKeys::make_ValidatorKeys (keyFile);
272272
0 commit comments