aboutsummaryrefslogtreecommitdiffstats
path: root/whisperTopic.cpp
diff options
context:
space:
mode:
authorGav Wood <i@gavwood.com>2015-01-30 12:22:08 +0800
committerGav Wood <i@gavwood.com>2015-01-30 12:22:08 +0800
commit7ed2dd65c8ea797de068940d27c19dc5deebc447 (patch)
tree76f2e49d5b7772936298eec0b19bc0024da71016 /whisperTopic.cpp
parent72af3456dfe680efb48991edb5a331fbe4d3587e (diff)
downloaddexon-solidity-7ed2dd65c8ea797de068940d27c19dc5deebc447.tar.gz
dexon-solidity-7ed2dd65c8ea797de068940d27c19dc5deebc447.tar.zst
dexon-solidity-7ed2dd65c8ea797de068940d27c19dc5deebc447.zip
Whisper now 100% encrypted.
Diffstat (limited to 'whisperTopic.cpp')
-rw-r--r--whisperTopic.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/whisperTopic.cpp b/whisperTopic.cpp
index 635defd7..0162124b 100644
--- a/whisperTopic.cpp
+++ b/whisperTopic.cpp
@@ -34,7 +34,7 @@ BOOST_AUTO_TEST_CASE(topic)
{
cnote << "Testing Whisper...";
auto oldLogVerbosity = g_logVerbosity;
- g_logVerbosity = 4;
+ g_logVerbosity = 0;
bool started = false;
unsigned result = 0;
@@ -55,7 +55,7 @@ BOOST_AUTO_TEST_CASE(topic)
{
for (auto i: wh->checkWatch(w))
{
- Message msg = wh->envelope(i).open(wh->filterKey(w));
+ Message msg = wh->envelope(i).open(wh->fullTopic(w));
last = RLP(msg.payload()).toInt<unsigned>();
cnote << "New message from:" << msg.from().abridged() << RLP(msg.payload()).toInt<unsigned>();
result += last;
@@ -116,7 +116,7 @@ BOOST_AUTO_TEST_CASE(forwarding)
{
for (auto i: wh->checkWatch(w))
{
- Message msg = wh->envelope(i).open(wh->filterKey(w));
+ Message msg = wh->envelope(i).open(wh->fullTopic(w));
unsigned last = RLP(msg.payload()).toInt<unsigned>();
cnote << "New message from:" << msg.from().abridged() << RLP(msg.payload()).toInt<unsigned>();
result = last;
@@ -152,7 +152,7 @@ BOOST_AUTO_TEST_CASE(forwarding)
{
for (auto i: wh->checkWatch(w))
{
- Message msg = wh->envelope(i).open(wh->filterKey(w));
+ Message msg = wh->envelope(i).open(wh->fullTopic(w));
cnote << "New message from:" << msg.from().abridged() << RLP(msg.payload()).toInt<unsigned>();
}
this_thread::sleep_for(chrono::milliseconds(50));
@@ -215,7 +215,7 @@ BOOST_AUTO_TEST_CASE(asyncforwarding)
{
for (auto i: wh->checkWatch(w))
{
- Message msg = wh->envelope(i).open(wh->filterKey(w));
+ Message msg = wh->envelope(i).open(wh->fullTopic(w));
cnote << "New message from:" << msg.from().abridged() << RLP(msg.payload()).toInt<unsigned>();
}
this_thread::sleep_for(chrono::milliseconds(50));
@@ -255,7 +255,7 @@ BOOST_AUTO_TEST_CASE(asyncforwarding)
{
for (auto i: wh->checkWatch(w))
{
- Message msg = wh->envelope(i).open(wh->filterKey(w));
+ Message msg = wh->envelope(i).open(wh->fullTopic(w));
unsigned last = RLP(msg.payload()).toInt<unsigned>();
cnote << "New message from:" << msg.from().abridged() << RLP(msg.payload()).toInt<unsigned>();
result = last;