diff options
author | Paweł Bylica <pawel.bylica@imapp.pl> | 2014-10-29 00:41:18 +0800 |
---|---|---|
committer | Paweł Bylica <pawel.bylica@imapp.pl> | 2014-10-29 00:41:18 +0800 |
commit | 878c41b3e3448b8f24da1427e6f575a0995e1704 (patch) | |
tree | b00a71a4f39277dd31d5facdc58384beacf6d1f7 | |
parent | f8c396c4c1015602c1524172212a2cfecd8375d1 (diff) | |
parent | cacc4477bf134ce28a87414e839e8fcc857a947d (diff) | |
download | dexon-solidity-878c41b3e3448b8f24da1427e6f575a0995e1704.tar dexon-solidity-878c41b3e3448b8f24da1427e6f575a0995e1704.tar.gz dexon-solidity-878c41b3e3448b8f24da1427e6f575a0995e1704.tar.bz2 dexon-solidity-878c41b3e3448b8f24da1427e6f575a0995e1704.tar.lz dexon-solidity-878c41b3e3448b8f24da1427e6f575a0995e1704.tar.xz dexon-solidity-878c41b3e3448b8f24da1427e6f575a0995e1704.tar.zst dexon-solidity-878c41b3e3448b8f24da1427e6f575a0995e1704.zip |
Merge branch 'develop' into develop-evmcc
Conflicts:
libevm/VM.h
-rw-r--r-- | vm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -359,9 +359,9 @@ void FakeExtVM::importExec(mObject& _o) code = &thisTxCode; if (_o["code"].type() == str_type) if (_o["code"].get_str().find_first_of("0x") == 0) - thisTxCode = compileLLL(_o["code"].get_str()); - else thisTxCode = fromHex(_o["code"].get_str().substr(2)); + else + thisTxCode = compileLLL(_o["code"].get_str()); else if (_o["code"].type() == array_type) for (auto const& j: _o["code"].get_array()) thisTxCode.push_back(toByte(j)); |