aboutsummaryrefslogtreecommitdiffstats
path: root/crypto.cpp
diff options
context:
space:
mode:
authorGav Wood <i@gavwood.com>2014-11-05 22:28:29 +0800
committerGav Wood <i@gavwood.com>2014-11-05 22:28:29 +0800
commitd7da8b1aaa3840aa5aa6cfbe4f5635225bfb14da (patch)
treed284facd19a5b24bf29bdddac4bfb9c8d5251b76 /crypto.cpp
parentaa41f1c6f1f0cbed7fe21005aab6562cb2588ea4 (diff)
downloaddexon-solidity-d7da8b1aaa3840aa5aa6cfbe4f5635225bfb14da.tar.gz
dexon-solidity-d7da8b1aaa3840aa5aa6cfbe4f5635225bfb14da.tar.zst
dexon-solidity-d7da8b1aaa3840aa5aa6cfbe4f5635225bfb14da.zip
Documentation for Transaction.
Diffstat (limited to 'crypto.cpp')
-rw-r--r--crypto.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto.cpp b/crypto.cpp
index 2f531442..cc35670a 100644
--- a/crypto.cpp
+++ b/crypto.cpp
@@ -397,8 +397,8 @@ int cryptoTest()
auto msg = t.rlp(false);
cout << "TX w/o SIG: " << RLP(msg) << endl;
- cout << "RLP(TX w/o SIG): " << toHex(t.rlpString(false)) << endl;
- std::string hmsg = sha3(t.rlpString(false), false);
+ cout << "RLP(TX w/o SIG): " << toHex(t.rlp(false)) << endl;
+ std::string hmsg = sha3(t.rlp(false), false);
cout << "SHA256(RLP(TX w/o SIG)): 0x" << toHex(hmsg) << endl;
bytes privkey = sha3Bytes("123");