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.

22 lines
645 B

  1. - blockchain is stored in a boltdb, in tmp/derod_database.db
  2. - the seeds are hardcoded in p2p/controller.go, line 61:
  3. ```go
  4. // add hard-coded seeds
  5. end_point_list = append(end_point_list, "212.8.242.60:18090")
  6. ```
  7. And also can be setted in the parameter:
  8. ```
  9. derod --add-exclusive-node
  10. ```
  11. - mainnetwork is defined in config/config.go line 91
  12. - NETWORK_ID
  13. - Line 92 can be substitued by:
  14. ```go
  15. Network_ID: uuid.FromStringOrNil("afdb5368-641d-41a2-8bc2-d2e825e25c46"),
  16. ```
  17. Where the string is a uuid string
  18. - Genesis_Block_Hash
  19. - Genesis_Tx
  20. - blocktime: config/config.go line 24