aboutsummaryrefslogtreecommitdiffstats
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
parentaa41f1c6f1f0cbed7fe21005aab6562cb2588ea4 (diff)
downloaddexon-solidity-d7da8b1aaa3840aa5aa6cfbe4f5635225bfb14da.tar.gz
dexon-solidity-d7da8b1aaa3840aa5aa6cfbe4f5635225bfb14da.tar.zst
dexon-solidity-d7da8b1aaa3840aa5aa6cfbe4f5635225bfb14da.zip
Documentation for Transaction.
-rw-r--r--crypto.cpp4
-rw-r--r--vm.cpp2
2 files changed, 3 insertions, 3 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");
diff --git a/vm.cpp b/vm.cpp
index 8344c0c5..6ecfa8f6 100644
--- a/vm.cpp
+++ b/vm.cpp
@@ -375,7 +375,7 @@ mArray FakeExtVM::exportCallCreates()
for (Transaction const& tx: callcreates)
{
mObject o;
- o["destination"] = tx.type() == Transaction::ContractCreation ? "" : toString(tx.receiveAddress());
+ o["destination"] = tx.isCreation() ? "" : toString(tx.receiveAddress());
push(o, "gasLimit", tx.gas());
push(o, "value", tx.value());
o["data"] = "0x" + toHex(tx.data());