diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-09 23:38:56 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-09 23:38:56 +0800 |
commit | 75660470d256109817b1962ef88dd42aca6a0d91 (patch) | |
tree | e85f812113bcd85fc368a0470f30a60b93b24275 /jsonrpc.cpp | |
parent | 2dfe5b1517ef557b13d5b56878cdcf7fe18e2699 (diff) | |
download | dexon-solidity-75660470d256109817b1962ef88dd42aca6a0d91.tar dexon-solidity-75660470d256109817b1962ef88dd42aca6a0d91.tar.gz dexon-solidity-75660470d256109817b1962ef88dd42aca6a0d91.tar.bz2 dexon-solidity-75660470d256109817b1962ef88dd42aca6a0d91.tar.lz dexon-solidity-75660470d256109817b1962ef88dd42aca6a0d91.tar.xz dexon-solidity-75660470d256109817b1962ef88dd42aca6a0d91.tar.zst dexon-solidity-75660470d256109817b1962ef88dd42aca6a0d91.zip |
removed resize
Diffstat (limited to 'jsonrpc.cpp')
-rw-r--r-- | jsonrpc.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/jsonrpc.cpp b/jsonrpc.cpp index ff83ae19..bef30429 100644 --- a/jsonrpc.cpp +++ b/jsonrpc.cpp @@ -77,7 +77,6 @@ struct Setup string fromAscii(string _s) { bytes b = asBytes(_s); - b.resize(max<unsigned>(b.size(), 32)); return "0x" + toHex(b); } |