cardano-up 0.1.4 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 26ea3b59240dc0a0c2eca674edf54ba66fba8e8bb276f40f1f3aecd4b1e13c8b
4
- data.tar.gz: 0f278da8551b805df01aa2c714fdfbba1272b5af3edea3e8101821a1cdae3263
3
+ metadata.gz: 97b0c3e82b8f3c963327000c3baf309a9844c69de0d93e4f2c32405e5f21ded3
4
+ data.tar.gz: cd87f4af35c07c65ea108f5b6f9418dd8a56633d8cbb145cf1e9855a027bae51
5
5
  SHA512:
6
- metadata.gz: 8c4f5f88c56f90fcc20e3b78bc994a2067760d70698f2bca1a4619d4b6fc809433fe6404776a0962c8be62b77ab08a41b1348589427a74631b79043c56f10bf5
7
- data.tar.gz: 6796a8d67a93cbb5b0b99a2d8b0c97f9416baefb67e911b50b46ccd6a0c3177f68dac2039a58210460e47668099f7814a6bc2cc68898d8f5b3edcaba2f59c850
6
+ metadata.gz: 7fd6b704ef5ee77a7398415452f03dbf8c3a5b44fd68ea19c42c26fa9b09ad318e3f66489c745da663ef7e626ad038d16a57a34d94fa218717ef89da972626be
7
+ data.tar.gz: ab22622009628fdfea1a7c326a49d98d7e9d9f8c95d5a5e9cd3e376f1e920fab794e56a6ff9d452a37cc3052c77c544f646cdb405e276cdb0661013beb408af4
@@ -113,23 +113,34 @@ module CardanoUp
113
113
  }
114
114
  }
115
115
  CardanoUp::Session.create_or_update(session_name, service_details)
116
- if CardanoUp::Utils.win?
117
- # Turn off p2p for Windows
118
- # TODO: remove after https://github.com/input-output-hk/ouroboros-network/issues/3968 released
119
- config_win = CardanoUp::Utils.from_json("#{config_dir}/config.json")
120
- config_win[:EnableP2P] = false
121
- CardanoUp::Utils.to_json("#{config_dir}/config.json", config_win)
122
- topology = {
123
- Producers: [
124
- {
125
- addr: "#{env}-node.world.dev.cardano.org",
126
- port: 30_002,
127
- valency: 2
128
- }
129
- ]
130
- }
131
- CardanoUp::Utils.to_json("#{config_dir}/topology.json", topology)
132
116
 
117
+ # Turn off p2p in config.json and topology.json
118
+ config_json = CardanoUp::Utils.from_json("#{config_dir}/config.json")
119
+ config_json[:EnableP2P] = false
120
+ CardanoUp::Utils.to_json("#{config_dir}/config.json", config_json)
121
+ addr = env == 'mainnet' ? 'relays-new.cardano-mainnet.iohk.io' : "#{env}-node.world.dev.cardano.org"
122
+ port = case env
123
+ when 'mainnet'
124
+ 3001
125
+ when 'preprod'
126
+ 30_000
127
+ when 'preview'
128
+ 30_002
129
+ else
130
+ 30_000
131
+ end
132
+ topology_json = {
133
+ Producers: [
134
+ {
135
+ addr: addr,
136
+ port: port,
137
+ valency: 2
138
+ }
139
+ ]
140
+ }
141
+ CardanoUp::Utils.to_json("#{config_dir}/topology.json", topology_json)
142
+
143
+ if CardanoUp::Utils.win?
133
144
  # create cardano-node.bat file
134
145
  File.write("#{bin_dir}/cardano-node.bat", node_cmd)
135
146
  install_node = "nssm install #{node_service} #{bin_dir}/cardano-node.bat"
@@ -2,5 +2,5 @@
2
2
 
3
3
  # Version
4
4
  module CardanoUp
5
- VERSION ||= '0.1.4'
5
+ VERSION ||= '0.1.5'
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cardano-up
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Piotr Stachyra
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-01 00:00:00.000000000 Z
11
+ date: 2023-04-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: docopt