diff options
| author | Tomo Ueda <[email protected]> | 2021-09-02 12:55:18 -0700 |
|---|---|---|
| committer | Tomo Ueda <[email protected]> | 2021-09-02 12:55:18 -0700 |
| commit | e64843ced509c24f783276d4cc0f2f26c9d527f2 (patch) | |
| tree | 7956d4ea416c5b3a531dbc6f356e1c9a643d9690 /src/rpc/rawtransaction.cpp | |
| parent | really s/doge/dis/g this time (diff) | |
| download | discoin-e64843ced509c24f783276d4cc0f2f26c9d527f2.tar.xz discoin-e64843ced509c24f783276d4cc0f2f26c9d527f2.zip | |
really s/Doge/Dis/g this time
Diffstat (limited to 'src/rpc/rawtransaction.cpp')
| -rw-r--r-- | src/rpc/rawtransaction.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rpc/rawtransaction.cpp b/src/rpc/rawtransaction.cpp index c2a60cd36..7e7e75b1c 100644 --- a/src/rpc/rawtransaction.cpp +++ b/src/rpc/rawtransaction.cpp @@ -219,7 +219,7 @@ UniValue getrawtransaction(const JSONRPCRequest& request) CTransactionRef tx; uint256 hashBlock; - // Dogecoin: Is this the best value for consensus height? + // Discoin: Is this the best value for consensus height? if (!GetTransaction(hash, tx, Params().GetConsensus(0), hashBlock, true)) throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, std::string(fTxIndex ? "No such mempool or blockchain transaction" : "No such mempool transaction. Use -txindex to enable blockchain transaction queries") + @@ -446,7 +446,7 @@ UniValue createrawtransaction(const JSONRPCRequest& request) } else { CBitcoinAddress address(name_); if (!address.IsValid()) - throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, string("Invalid Dogecoin address: ")+name_); + throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, string("Invalid Discoin address: ")+name_); if (setAddress.count(address)) throw JSONRPCError(RPC_INVALID_PARAMETER, string("Invalid parameter, duplicated address: ")+name_); |