Skip to content

Commit ce3d726

Browse files
author
Łukasz Gąsior
committed
Cleanup
1 parent c6a172f commit ce3d726

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/main/scala/io/iohk/ethereum/jsonrpc/EthService.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import scala.concurrent.ExecutionContext.Implicits.global
3535
import scala.concurrent.Future
3636
import scala.util.{Failure, Success, Try}
3737

38-
// scalastyle:off number.of.methods number.of.types
38+
// scalastyle:off number.of.methods number.of.types file.size.limit
3939
object EthService {
4040

4141
case class ProtocolVersionRequest()

src/main/scala/io/iohk/ethereum/jsonrpc/JsonRpcController.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,10 +220,8 @@ class JsonRpcController(
220220

221221
private def handleIeleRequest: PartialFunction[JsonRpcRequest, Future[JsonRpcResponse]] = {
222222
case req @ JsonRpcRequest(_, "iele_sendTransaction", _, _) =>
223-
println("Handle iele_sendTx")
224223
handle[SendIeleTransactionRequest, SendTransactionResponse](personalService.sendIeleTransaction, req)
225224
case req @ JsonRpcRequest(_, "iele_call", _, _) =>
226-
println("Handling iele_call")
227225
handle[IeleCallRequest, CallResponse](ethService.ieleCall, req)
228226
}
229227

0 commit comments

Comments
 (0)