diff --git a/src/RLP.php b/src/RLP.php index 911aa8c..070b327 100644 --- a/src/RLP.php +++ b/src/RLP.php @@ -37,7 +37,6 @@ public function encode($inputs) $output = new Buffer; $input = $this->toBuffer($inputs); $length = $input->length(); - // var_dump($input); if ($length === 1 && $input[0] < 128) { return $input; @@ -251,7 +250,7 @@ protected function toBuffer($input) } elseif (is_string($input)) { if (strpos($input, '0x') === 0) { // hex string - $input = str_replace('0x', '', $input); + // $input = str_replace('0x', '', $input); return new Buffer($input, 'hex'); } return new Buffer(str_split($input, 1));