Browse Source

removed trailing zeros from rpc results, fixed #1433

cl-refactor
Marek Kotewicz 10 years ago
parent
commit
a0608412ac
  1. 2
      libweb3jsonrpc/WebThreeStubServerBase.cpp

2
libweb3jsonrpc/WebThreeStubServerBase.cpp

@ -402,7 +402,7 @@ string WebThreeStubServerBase::eth_getCode(string const& _address, string const&
{ {
try try
{ {
return toJS(client()->codeAt(jsToAddress(_address), toBlockNumber(_blockNumber)), 1); return toJS(client()->codeAt(jsToAddress(_address), toBlockNumber(_blockNumber)));
} }
catch (...) catch (...)
{ {

Loading…
Cancel
Save