mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
move website and DNS unit tests from monero.cc to getmonero.org
This commit is contained in:
parent
e728992803
commit
7590f33f9e
3 changed files with 7 additions and 6 deletions
|
@ -4,8 +4,9 @@ Copyright (c) 2014-2015, The Monero Project
|
||||||
|
|
||||||
## Development Resources
|
## Development Resources
|
||||||
|
|
||||||
Web: [monero.cc](http://monero.cc)
|
Web: [getmonero.org](https://getmonero.org)
|
||||||
Mail: [dev@monero.cc](mailto:dev@monero.cc)
|
Forum: [forum.getmonero.org](https://forum.getmonero.org)
|
||||||
|
Mail: [dev@getmonero.org](mailto:dev@getmonero.org)
|
||||||
Github (staging): [https://github.com/monero-project/bitmonero](https://github.com/monero-project/bitmonero)
|
Github (staging): [https://github.com/monero-project/bitmonero](https://github.com/monero-project/bitmonero)
|
||||||
Github (development): [http://github.com/monero-project/bitmonero/tree/development](http://github.com/monero-project/bitmonero/tree/development)
|
Github (development): [http://github.com/monero-project/bitmonero/tree/development](http://github.com/monero-project/bitmonero/tree/development)
|
||||||
IRC: [#monero-dev on Freenode](irc://chat.freenode.net/#monero-dev)
|
IRC: [#monero-dev on Freenode](irc://chat.freenode.net/#monero-dev)
|
||||||
|
@ -32,7 +33,7 @@ Anyone is able to contribute to Monero. If you have a fix or code change, feel f
|
||||||
|
|
||||||
Monero development can be supported directly through donations.
|
Monero development can be supported directly through donations.
|
||||||
|
|
||||||
Both Monero and Bitcoin donations can be made to donate.monero.cc if using a client that supports the [OpenAlias](https://openalias.org) standard
|
Both Monero and Bitcoin donations can be made to donate.getmonero.org if using a client that supports the [OpenAlias](https://openalias.org) standard
|
||||||
|
|
||||||
The Monero donation address is: 46BeWrHpwXmHDpDEUmZBWZfoQpdc6HaERCNmx1pEYL2rAcuwufPN9rXHHtyUA4QVy66qeFQkn6sfK8aHYjA3jk3o1Bv16em (viewkey: e422831985c9205238ef84daf6805526c14d96fd7b059fe68c7ab98e495e5703)
|
The Monero donation address is: 46BeWrHpwXmHDpDEUmZBWZfoQpdc6HaERCNmx1pEYL2rAcuwufPN9rXHHtyUA4QVy66qeFQkn6sfK8aHYjA3jk3o1Bv16em (viewkey: e422831985c9205238ef84daf6805526c14d96fd7b059fe68c7ab98e495e5703)
|
||||||
|
|
||||||
|
|
|
@ -86,7 +86,7 @@ TEST(AddressFromURL, Success)
|
||||||
|
|
||||||
bool dnssec_result = false;
|
bool dnssec_result = false;
|
||||||
|
|
||||||
std::vector<std::string> addresses = tools::wallet2::addresses_from_url("donate.monero.cc", dnssec_result);
|
std::vector<std::string> addresses = tools::wallet2::addresses_from_url("donate.getmonero.org", dnssec_result);
|
||||||
|
|
||||||
EXPECT_EQ(1, addresses.size());
|
EXPECT_EQ(1, addresses.size());
|
||||||
if (addresses.size() == 1)
|
if (addresses.size() == 1)
|
||||||
|
|
|
@ -108,12 +108,12 @@ TEST(DNSResolver, GetTXTRecord)
|
||||||
{
|
{
|
||||||
bool avail, valid;
|
bool avail, valid;
|
||||||
|
|
||||||
std::vector<std::string> records = tools::DNSResolver::instance().get_txt_record("donate.monero.cc", avail, valid);
|
std::vector<std::string> records = tools::DNSResolver::instance().get_txt_record("donate.getmonero.org", avail, valid);
|
||||||
|
|
||||||
EXPECT_NE(0, records.size());
|
EXPECT_NE(0, records.size());
|
||||||
|
|
||||||
for (auto& rec : records)
|
for (auto& rec : records)
|
||||||
{
|
{
|
||||||
std::cout << "TXT record for donate.monero.cc: " << rec << std::endl;
|
std::cout << "TXT record for donate.getmonero.org: " << rec << std::endl;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue