This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Application: &ApplicationDefaults | |
Organizations: | |
Orderer: &OrdererDefaults | |
OrdererType: solo # Available types are "solo" and "kafka" | |
Addresses: | |
- orderer.example.com:7050 | |
BatchTimeout: 2s # Batch Timeout: The amount of time to wait before creating a batch | |
BatchSize: # Batch Size: Controls the number of messages batched into a block | |
MaxMessageCount: 10 # Max Message Count: The maximum number of messages to permit in a batch | |
AbsoluteMaxBytes: 99 MB |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Organizations: | |
- &OrdererOrg | |
Name: OrdererOrg | |
ID: OrdererMSP | |
MSPDir: crypto-config/ordererOrganizations/example.com/msp | |
- &Org1 | |
Name: Org1MSP | |
ID: Org1MSP | |
MSPDir: crypto-config/peerOrganizations/org1.example.com/msp | |
AnchorPeers: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Profiles: | |
OneOrgOrdererGenesis: | |
Orderer: | |
<<: *OrdererDefaults | |
Organizations: | |
- *OrdererOrg | |
Consortiums: | |
SampleConsortium: | |
Organizations: | |
- *Org1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get remove scala-library scala | |
sudo wget www.scala-lang.org/files/archive/scala-2.10.4.deb | |
sudo dpkg -i scala-2.10.4.deb | |
sudo apt-get update | |
sudo apt-get install scala | |
wget http://scalasbt.artifactoryonline.com/scalasbt/sbt-native-packages/org/scala-sbt/sbt/0.12.4/sbt.deb | |
sudo dpkg -i sbt.deb | |
sudo apt-get update | |
sudo apt-get install sbt |