Skip to content

Commit 06edc23

Browse files
Improve readability by removing redundant casts to same type (on all platforms)
1 parent 711d16c commit 06edc23

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/init.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -906,7 +906,7 @@ bool AppInitParameterInteraction()
906906
nMaxConnections = std::max(nUserMaxConnections, 0);
907907

908908
// Trim requested connection counts, to fit into system limitations
909-
nMaxConnections = std::max(std::min(nMaxConnections, (int)(FD_SETSIZE - nBind - MIN_CORE_FILEDESCRIPTORS - MAX_ADDNODE_CONNECTIONS)), 0);
909+
nMaxConnections = std::max(std::min(nMaxConnections, FD_SETSIZE - nBind - MIN_CORE_FILEDESCRIPTORS - MAX_ADDNODE_CONNECTIONS), 0);
910910
nFD = RaiseFileDescriptorLimit(nMaxConnections + MIN_CORE_FILEDESCRIPTORS + MAX_ADDNODE_CONNECTIONS);
911911
if (nFD < MIN_CORE_FILEDESCRIPTORS)
912912
return InitError(_("Not enough file descriptors available."));

src/key.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ CPrivKey CKey::GetPrivKey() const {
170170
size_t privkeylen;
171171
privkey.resize(PRIVATE_KEY_SIZE);
172172
privkeylen = PRIVATE_KEY_SIZE;
173-
ret = ec_privkey_export_der(secp256k1_context_sign, (unsigned char*) privkey.data(), &privkeylen, begin(), fCompressed ? SECP256K1_EC_COMPRESSED : SECP256K1_EC_UNCOMPRESSED);
173+
ret = ec_privkey_export_der(secp256k1_context_sign, privkey.data(), &privkeylen, begin(), fCompressed ? SECP256K1_EC_COMPRESSED : SECP256K1_EC_UNCOMPRESSED);
174174
assert(ret);
175175
privkey.resize(privkeylen);
176176
return privkey;
@@ -199,7 +199,7 @@ bool CKey::Sign(const uint256 &hash, std::vector<unsigned char>& vchSig, uint32_
199199
secp256k1_ecdsa_signature sig;
200200
int ret = secp256k1_ecdsa_sign(secp256k1_context_sign, &sig, hash.begin(), begin(), secp256k1_nonce_function_rfc6979, test_case ? extra_entropy : nullptr);
201201
assert(ret);
202-
secp256k1_ecdsa_signature_serialize_der(secp256k1_context_sign, (unsigned char*)vchSig.data(), &nSigLen, &sig);
202+
secp256k1_ecdsa_signature_serialize_der(secp256k1_context_sign, vchSig.data(), &nSigLen, &sig);
203203
vchSig.resize(nSigLen);
204204
return true;
205205
}
@@ -226,7 +226,7 @@ bool CKey::SignCompact(const uint256 &hash, std::vector<unsigned char>& vchSig)
226226
secp256k1_ecdsa_recoverable_signature sig;
227227
int ret = secp256k1_ecdsa_sign_recoverable(secp256k1_context_sign, &sig, hash.begin(), begin(), secp256k1_nonce_function_rfc6979, nullptr);
228228
assert(ret);
229-
secp256k1_ecdsa_recoverable_signature_serialize_compact(secp256k1_context_sign, (unsigned char*)&vchSig[1], &rec, &sig);
229+
secp256k1_ecdsa_recoverable_signature_serialize_compact(secp256k1_context_sign, &vchSig[1], &rec, &sig);
230230
assert(ret);
231231
assert(rec != -1);
232232
vchSig[0] = 27 + rec + (fCompressed ? 4 : 0);

0 commit comments

Comments
 (0)