diff options
| author | practicalswift <[email protected]> | 2017-03-09 10:16:16 +0100 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2017-03-09 10:16:16 +0100 |
| commit | 9ea249014a6b85b10f8f4af0e680d5514796cdc5 (patch) | |
| tree | f9d2377e60b1ae83ae6fd39d0576e751d3145757 /src | |
| parent | Merge #9916: Fix msvc compiler error C4146 (minus operator applied to unsigne... (diff) | |
| download | discoin-9ea249014a6b85b10f8f4af0e680d5514796cdc5.tar.xz discoin-9ea249014a6b85b10f8f4af0e680d5514796cdc5.zip | |
[trival] Fix typo introduced into rpc/protocol.h in commit 338bf06
The typo was introduced in commit 338bf065a454fee76d9dfa9c7a36161cac72309f, which was merged yesterday.
Changes summarized to facilitate reviewing:
* exampled → example
Diffstat (limited to 'src')
| -rw-r--r-- | src/rpc/protocol.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/protocol.h b/src/rpc/protocol.h index eafb8d9e6..85bc4db10 100644 --- a/src/rpc/protocol.h +++ b/src/rpc/protocol.h @@ -39,7 +39,7 @@ enum RPCErrorCode RPC_METHOD_NOT_FOUND = -32601, RPC_INVALID_PARAMS = -32602, // RPC_INTERNAL_ERROR should only be used for genuine errors in bitcoind - // (for exampled datadir corruption). + // (for example datadir corruption). RPC_INTERNAL_ERROR = -32603, RPC_PARSE_ERROR = -32700, |