Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. Profiles:
  2. TwoOrgsOrdererGenesis:
  3. Orderer:
  4. <<: *OrdererDefaults
  5. Organizations:
  6. - *OrdererOrg
  7. Consortiums:
  8. SampleConsortium:
  9. Organizations:
  10. - *Org1
  11. - *Org2
  12.  
  13. Organizations:
  14. - &OrdererOrg
  15. Name: OrdererOrg
  16. ID: OrdererMSP
  17. MSPDir: crypto-config/ordererOrganizations/ksachdeva-exp.com/msp
  18.  
  19. - &Org1
  20. Name: Org1MSP
  21. ID: Org1MSP
  22. MSPDir: crypto-config/peerOrganizations/org1.ksachdeva-exp.com/msp
  23. AnchorPeers:
  24. # AnchorPeers defines the location of peers which can be used
  25. # for cross org gossip communication. Note, this value is only
  26. # encoded in the genesis block in the Application section context
  27. - Host: peer0.org1.ksachdeva-exp.com
  28. Port: 7051
  29.  
  30. - &Org2
  31. Name: Org2MSP
  32. ID: Org2MSP
  33. MSPDir: crypto-config/peerOrganizations/org2.ksachdeva-exp.com/msp
  34. AnchorPeers:
  35. - Host: peer0.org2.ksachdeva-exp.com
  36. Port: 7051
  37.  
  38. Orderer: &OrdererDefaults
  39.  
  40. # Available types are "solo" and "kafka"
  41. OrdererType: solo
  42. Addresses:
  43. - orderer.ksachdeva-exp.com:7050
  44. BatchTimeout: 2s
  45. BatchSize:
  46. MaxMessageCount: 10
  47. AbsoluteMaxBytes: 99 MB
  48. PreferredMaxBytes: 512 KB
  49. Kafka:
  50. Brokers:
  51. - 127.0.0.1:9092
  52. # Organizations is the list of orgs which are defined as participants on
  53. # the orderer side of the network
  54. Organizations:
  55.  
  56. Application: &ApplicationDefaults
  57. # Organizations is the list of orgs which are defined as participants on
  58. # the application side of the network
  59. Organizations:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement