Merge pull request #234
7590f33
move website and DNS unit tests from monero.cc to getmonero.org (Riccardo Spagni)
This commit is contained in:
commit
98a4e6ae6a
|
@ -4,8 +4,9 @@ Copyright (c) 2014-2015, The Monero Project
|
|||
|
||||
## Development Resources
|
||||
|
||||
Web: [monero.cc](http://monero.cc)
|
||||
Mail: [dev@monero.cc](mailto:dev@monero.cc)
|
||||
Web: [getmonero.org](https://getmonero.org)
|
||||
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 (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)
|
||||
|
@ -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.
|
||||
|
||||
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)
|
||||
|
||||
|
|
|
@ -86,7 +86,7 @@ TEST(AddressFromURL, Success)
|
|||
|
||||
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());
|
||||
if (addresses.size() == 1)
|
||||
|
|
|
@ -108,12 +108,12 @@ TEST(DNSResolver, GetTXTRecord)
|
|||
{
|
||||
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());
|
||||
|
||||
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 New Issue