mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
correct net/test for ping packet
This commit is contained in:
parent
671254626a
commit
70184ece42
4
net.cpp
4
net.cpp
@ -145,7 +145,7 @@ public:
|
|||||||
bool success = false;
|
bool success = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(badPingNodePacket)
|
BOOST_AUTO_TEST_CASE(v2PingNodePacket)
|
||||||
{
|
{
|
||||||
// test old versino of pingNode packet w/new
|
// test old versino of pingNode packet w/new
|
||||||
RLPStream s;
|
RLPStream s;
|
||||||
@ -153,7 +153,7 @@ BOOST_AUTO_TEST_CASE(badPingNodePacket)
|
|||||||
|
|
||||||
PingNode p((bi::udp::endpoint()));
|
PingNode p((bi::udp::endpoint()));
|
||||||
BOOST_REQUIRE_NO_THROW(p = PingNode::fromBytesConstRef(bi::udp::endpoint(), bytesConstRef(&s.out())));
|
BOOST_REQUIRE_NO_THROW(p = PingNode::fromBytesConstRef(bi::udp::endpoint(), bytesConstRef(&s.out())));
|
||||||
BOOST_REQUIRE(p.version == 0);
|
BOOST_REQUIRE(p.version == 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(test_neighbours_packet)
|
BOOST_AUTO_TEST_CASE(test_neighbours_packet)
|
||||||
|
Loading…
Reference in New Issue
Block a user