File tree Expand file tree Collapse file tree 2 files changed +1
-8
lines changed
main/scala/io/iohk/ethereum/network/p2p/messages
test/scala/io/iohk/ethereum/domain Expand file tree Collapse file tree 2 files changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -254,7 +254,6 @@ object BaseETH6XMessages {
254
254
implicit class SignedTransactionRlpEncodableDec (val rlpEncodeable : RLPEncodeable ) extends AnyVal {
255
255
256
256
// scalastyle:off method.length
257
-
258
257
/** A signed transaction is either a RLPList representing a Legacy SignedTransaction
259
258
* or a PrefixedRLPEncodable(transactionType, RLPList of typed transaction envelope)
260
259
*
@@ -318,6 +317,7 @@ object BaseETH6XMessages {
318
317
throw new RuntimeException (" Cannot decode SignedTransaction" )
319
318
}
320
319
}
320
+ // scalastyle:on method.length
321
321
322
322
implicit class SignedTransactionDec (val bytes : Array [Byte ]) extends AnyVal {
323
323
def toSignedTransaction : SignedTransaction = {
Original file line number Diff line number Diff line change @@ -132,11 +132,4 @@ class TransactionSpec
132
132
x shouldBe expected
133
133
134
134
}
135
- it should " correctly serialize to EIP1598 rlp" in {}
136
-
137
- // plan:
138
- // TODO ReceiptSpec
139
- // TODO decode string to case class
140
- // TODO adjust runVM in ledger
141
- // TODO align how geth and besu treat typed transactions when sent via rpc before magneto HF
142
135
}
You can’t perform that action at this time.
0 commit comments