Skip to content

Commit

Permalink
chore(release-calc): 0.2.4 (#751)
Browse files Browse the repository at this point in the history
* chore(release-calc): 0.2.4

* fix: little grumble in the code
  • Loading branch information
TarikGul committed Nov 8, 2021
1 parent 612cf29 commit 7f950c9
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion calc/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion calc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "calc"
version = "0.2.3"
version = "0.2.4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
Expand Down
Binary file modified calc/pkg/calc_bg.wasm
Binary file not shown.
2 changes: 1 addition & 1 deletion calc/pkg/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"Parity Technologies <admin@parity.io>"
],
"description": "Off-chain calculations for @substrate/api-sidecar.",
"version": "0.2.3",
"version": "0.2.4",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions calc/src/calc_fee.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ impl Multiplier {
("westmine", _v) => V2(new_u128(inner)),
("westmint", _v) => V2(new_u128(inner)),

("dock-main-runtime", _) => V2(new_u128(inner)),
("dock-pos-main-runtime", _) => V2(new_u128(inner)),
("dock-pos-test-runtime", _) => V2(new_u128(inner)),
("dock-main-runtime", _v) => V2(new_u128(inner)),
("dock-pos-main-runtime", _v) => V2(new_u128(inner)),
("dock-pos-test-runtime", _v) => V2(new_u128(inner)),

("calamari", _v) => V2(new_u128(inner)),

Expand Down

0 comments on commit 7f950c9

Please sign in to comment.