diff options
| author | Luke Dashjr <[email protected]> | 2012-07-26 00:48:39 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2012-08-01 17:49:51 +0000 |
| commit | 814efd6f1fc83afb9ed4bb3c0808ee3bab11d10d (patch) | |
| tree | 782fac39da35e54bce2a9108cdca82f21b489405 /src/test/DoS_tests.cpp | |
| parent | Merge pull request #1344 from rebroad/AskForTimeFormat (diff) | |
| download | discoin-814efd6f1fc83afb9ed4bb3c0808ee3bab11d10d.tar.xz discoin-814efd6f1fc83afb9ed4bb3c0808ee3bab11d10d.zip | |
Bugfix: Fix a variety of misspellings
Diffstat (limited to 'src/test/DoS_tests.cpp')
| -rw-r--r-- | src/test/DoS_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/DoS_tests.cpp b/src/test/DoS_tests.cpp index 4a185b3cc..7f08dd554 100644 --- a/src/test/DoS_tests.cpp +++ b/src/test/DoS_tests.cpp @@ -37,7 +37,7 @@ BOOST_AUTO_TEST_CASE(DoS_banning) CNode dummyNode1(INVALID_SOCKET, addr1, "", true); dummyNode1.Misbehaving(100); // Should get banned BOOST_CHECK(CNode::IsBanned(addr1)); - BOOST_CHECK(!CNode::IsBanned(ip(0xa0b0c001|0x0000ff00))); // Different ip, not banned + BOOST_CHECK(!CNode::IsBanned(ip(0xa0b0c001|0x0000ff00))); // Different IP, not banned CAddress addr2(ip(0xa0b0c002)); CNode dummyNode2(INVALID_SOCKET, addr2, "", true); |