aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/net.cpp
diff options
context:
space:
mode:
authorAlin Rus <alin@fsck.ro>2018-01-11 21:40:51 +0100
committerAlin Rus <alin@fsck.ro>2018-01-11 21:40:51 +0100
commita73aab7cd8343d795b1a7408bd71f522262ac76e (patch)
tree3e269a8f345cdd4ae3de43b277a11255295aa2ca /src/rpc/net.cpp
parent1d2eaba300bc13c556e3cb05420dcc91ae12e1d0 (diff)
downloadbitcoin-a73aab7cd8343d795b1a7408bd71f522262ac76e.tar.xz
Use the character based overload for std::string::find.
std::string::find has a character based overload as can be seen here (4th oveload): http://www.cplusplus.com/reference/string/string/find/ Use that instead of constantly allocating temporary strings.
Diffstat (limited to 'src/rpc/net.cpp')
-rw-r--r--src/rpc/net.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/net.cpp b/src/rpc/net.cpp
index a81b651981..59b376c59a 100644
--- a/src/rpc/net.cpp
+++ b/src/rpc/net.cpp
@@ -516,7 +516,7 @@ UniValue setban(const JSONRPCRequest& request)
CNetAddr netAddr;
bool isSubnet = false;
- if (request.params[0].get_str().find("/") != std::string::npos)
+ if (request.params[0].get_str().find('/') != std::string::npos)
isSubnet = true;
if (!isSubnet) {