Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix to update fixed price #380

Merged
merged 3 commits into from
Dec 20, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/snet_cli/snet/snet_cli/mpe_service_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ def set_fixed_price_in_cogs(self, group_name, price):
for pricing in group['pricing']:
if pricing["price_model"] == "fixed_price":
is_fixed_price_enabled = True
pricing["price_in_cogs"] = price
if not is_fixed_price_enabled:
group["pricing"].append({"price_model": "fixed_price",
"price_in_cogs": price, "default": True})
Expand Down
7 changes: 7 additions & 0 deletions packages/snet_cli/test/functional_tests/script1_twogroups.sh
Original file line number Diff line number Diff line change
Expand Up @@ -239,3 +239,10 @@ snet service metadata-add-group group1
snet service metadata-add-group group2 && exit 1 || echo "fail as expected"
snet service metadata-add-endpoints group1 8.8.8.8:22 1.2.3.4:8080
snet service update-metadata testo tests7 -y


#testcase for updating fixed price
snet --print-traceback service metadata-init ./service_spec1/ ExampleService --encoding json --service-type jsonrpc --group-name group1 --fixed-price 0.01212 --endpoints 8.8.8.8:2020 9.8.9.8:8080 --metadata-file service_metadata_fixed_price.json
grep "1212000" service_metadata_fixed_price.json
snet service metadata-set-fixed-price group1 0.2323 --metadata-file service_metadata_fixed_price.json
grep "23230000" service_metadata_fixed_price.json