You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
291 B
12 lines
291 B
package com.xsn.explorer.helpers
|
|
|
|
import com.xsn.explorer.models._
|
|
|
|
import scala.language.implicitConversions
|
|
|
|
object Converters {
|
|
|
|
implicit def toPersistedBlock(rpcBlock: rpc.Block): persisted.Block = {
|
|
transformers.toPersistedBlock(rpcBlock, BlockExtractionMethod.ProofOfWork)
|
|
}
|
|
}
|
|
|