Browse Source
Enabling the lite-version allows to prune block details to allow syncing fast until what the light wallet needs.develop
Alexis Hernandez
6 years ago
12 changed files with 105 additions and 24 deletions
@ -0,0 +1,13 @@ |
|||||
|
package com.xsn.explorer.helpers |
||||
|
|
||||
|
import com.xsn.explorer.config.ExplorerConfig |
||||
|
import com.xsn.explorer.models.values.Blockhash |
||||
|
|
||||
|
object Config { |
||||
|
val explorerConfig = new ExplorerConfig { |
||||
|
|
||||
|
override def genesisBlock: Blockhash = Blockhash.from("00000c822abdbb23e28f79a49d29b41429737c6c7e15df40d1b1f1b35907ae34").get |
||||
|
|
||||
|
override def liteVersionConfig: ExplorerConfig.LiteVersionConfig = ExplorerConfig.LiteVersionConfig(enabled = false, 0) |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue