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

0.5.0 space & punish #75

Merged
merged 25 commits into from Jul 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
2263f75
Merge branch 'main' of github.com:CESSProject/cess into main
ytqaljn Jun 30, 2022
b03375d
refactor: optimize random challenges
ytqaljn Jul 13, 2022
8d4a868
feat: Support to modify beneficiary and IP
thirteenggh Jul 19, 2022
c3f69aa
Merge pull request #71 from thirteenggh/cess-0.4.4
thirteenggh Jul 19, 2022
3c2f931
feat: space package
ytqaljn Jul 21, 2022
bf74e9a
feat: package struct info
ytqaljn Jul 21, 2022
c4ae317
Merge remote-tracking branch 'origin/main' into 0.5.0-space
ytqaljn Jul 22, 2022
c66a3a5
feat: new real-time pricing mechanism
ytqaljn Jul 25, 2022
ec7ce7b
refactor: remove the offchain worker
ytqaljn Jul 25, 2022
7b254ca
style: replacement version number
ytqaljn Jul 25, 2022
a240ca6
fix: fix unwrap panic
ytqaljn Jul 25, 2022
edb645e
feat: new space package structure
ytqaljn Jul 25, 2022
a64745e
Merge remote-tracking branch 'origin/cess-0.4.4' into 0.5.0-space
ytqaljn Jul 25, 2022
d8060b3
merge: merge
ytqaljn Jul 25, 2022
9abd805
refactor:Update the penalty mechanism
thirteenggh Jul 25, 2022
db139bc
Merge pull request #72 from thirteenggh/cess-0.4.4
thirteenggh Jul 25, 2022
9450c7b
feat:Support for continuous penalties and penalty freeze periods
thirteenggh Jul 27, 2022
07404d4
Merge pull request #73 from thirteenggh/cess-0.4.4
thirteenggh Jul 27, 2022
a1aeedb
refactor:Optimize the process of punishing miners
thirteenggh Jul 28, 2022
f5b9a64
style:Clarify the type of constants
thirteenggh Jul 28, 2022
e0b4bff
Merge pull request #74 from thirteenggh/cess-0.4.4
thirteenggh Jul 28, 2022
127a75d
feat: sminer benchmark
ytqaljn Jul 28, 2022
c241a07
merge: merge remote-tracking branch 'origin/cess-0.4.4' into 0.5.0-space
ytqaljn Jul 28, 2022
84c939d
merge: merge punish
ytqaljn Jul 28, 2022
1038de4
fix: t as config
ytqaljn Jul 29, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 7 additions & 6 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions c-pallets/file-bank/Cargo.toml
@@ -1,10 +1,10 @@
[package]
name = "pallet-file-bank"
authors = ["CESS LAB"]
version = "0.1.0"
version = "0.5.0"
edition = "2018"
license = "Apache-2.0"
repository = ""
repository = "https://github.com/CESSProject/cess"
description = "FRAME pallet for file-bank management"
readme = "README.md"

Expand Down Expand Up @@ -73,12 +73,12 @@ version = '6.0.0'
[dependencies.pallet-sminer]
default-features = false
path = '../sminer'
version = '0.1.0'
version = '0.5.0'

[dependencies.pallet-file-map]
default-features = false
path = '../file-map'
version = '0.1.0'
version = '0.5.0'

# dev dependencies
[dev-dependencies]
Expand Down Expand Up @@ -109,7 +109,7 @@ std = [
"pallet-balances/std",
"frame-benchmarking/std",
"pallet-file-map/std",
"pallet-sminer/std",

]

runtime-benchmarks = [
Expand Down