mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
fix(build): uint is not defined on Windows platform (#4731)
Fix the Windows build by using `unsigned int` (instead of `uint`). The error, introduced by #4618, looks something like: rpc\impl\RPCHelpers.h(299,5): error C2061: syntax error: identifier 'uint' (compiling source file app\ledger\Ledger.cpp)
This commit is contained in:
@@ -296,7 +296,7 @@ std::pair<PublicKey, SecretKey>
|
||||
keypairForSignature(
|
||||
Json::Value const& params,
|
||||
Json::Value& error,
|
||||
uint apiVersion = apiVersionIfUnspecified);
|
||||
unsigned int apiVersion = apiVersionIfUnspecified);
|
||||
/** Helper to parse submit_mode parameter to RPC submit.
|
||||
*
|
||||
* @param params RPC parameters
|
||||
|
||||
Reference in New Issue
Block a user