diff options
author | CJentzsch <jentzsch.software@gmail.com> | 2015-02-13 18:24:20 +0800 |
---|---|---|
committer | CJentzsch <jentzsch.software@gmail.com> | 2015-02-13 18:24:20 +0800 |
commit | 6902084231dbe9a3752afb167d7a6be07218f0cd (patch) | |
tree | 1a9d7a24f9f4b056ec8a7b147a896ba315829ee1 | |
parent | fa5c4c8857803620b976e781a31d743e04a48f95 (diff) | |
download | dexon-solidity-6902084231dbe9a3752afb167d7a6be07218f0cd.tar.gz dexon-solidity-6902084231dbe9a3752afb167d7a6be07218f0cd.tar.zst dexon-solidity-6902084231dbe9a3752afb167d7a6be07218f0cd.zip |
fix tx output
-rw-r--r-- | block.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -217,8 +217,8 @@ void doBlockTests(json_spirit::mValue& _v, bool _fillin) txObject["data"] = toHex(tx.data()); txObject["gasLimit"] = toString(tx.gas()); txObject["gasPrice"] = toString(tx.gasPrice()); - txObject["r"] = toString(tx.signature().r); - txObject["s"] = toString(tx.signature().s); + txObject["r"] = "0x" + toString(tx.signature().r); + txObject["s"] = "0x" + toString(tx.signature().s); txObject["v"] = to_string(tx.signature().v + 27); txObject["to"] = toString(tx.receiveAddress()); txObject["value"] = toString(tx.value()); |