Skip to content

Commit

Permalink
Merge pull request #300 from CESSProject/0.7.6-fix-decimals
Browse files Browse the repository at this point in the history
fix: some bug
  • Loading branch information
jiuquxzy authored Jan 31, 2024
2 parents 55dff8c + 300f86f commit 70d2d00
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pallets/sminer/src/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pub(super) const STATE_LOCK: &str = "lock";

pub(super) const STATE_OFFLINE: &str = "offline";

pub(super) const FAUCET_VALUE: u128 = 10_000_000_000_000_000;
pub(super) const FAUCET_VALUE: u128 = 10_000_000_000_000_000_000_000;

pub(super) const IDLE_MUTI: Perbill = Perbill::from_percent(30);

Expand Down
2 changes: 1 addition & 1 deletion standalone/chain/runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
// `spec_version`, and `authoring_version` are the same between Wasm and native.
// This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use
// the compatible custom types.
spec_version: 100,
spec_version: 101,
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down

0 comments on commit 70d2d00

Please sign in to comment.