diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2014-12-17 09:34:09 +0000 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-12-31 10:53:26 +0100 |
commit | 1eadfd97538830a323c9ee40c18c6f8fb1e5ec36 (patch) | |
tree | c1f7b39e8d5c2946cea4dcf026acb41c7a06cf01 /src/rpcmining.cpp | |
parent | 18021d08f76f966ca178a502c6223fab8e8cd960 (diff) |
Bugfix: prioritisetransaction: Do some basic sanity checking on txid
Besides giving a nicer error, this also prevents logging arbitrary data (which could have been used to exploit log readers) into debug.log
Rebased-From: 7f718139191d67da29c5d856d29e035bbc51e659
Github-Pull: #5499
Diffstat (limited to 'src/rpcmining.cpp')
-rw-r--r-- | src/rpcmining.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/rpcmining.cpp b/src/rpcmining.cpp index b406106ff2..86230521ce 100644 --- a/src/rpcmining.cpp +++ b/src/rpcmining.cpp @@ -288,8 +288,7 @@ Value prioritisetransaction(const Array& params, bool fHelp) + HelpExampleRpc("prioritisetransaction", "\"txid\", 0.0, 10000") ); - uint256 hash; - hash.SetHex(params[0].get_str()); + uint256 hash = ParseHashStr(params[0].get_str(), "txid"); CAmount nAmount = params[2].get_int64(); |