Adding vesting logic to claims (#637)

* Adding vesting logic to claims

* Add genesis

* Update runtime/src/claims.rs

Co-Authored-By: Bastian Köcher <bkchr@users.noreply.github.com>

* Bump spec

* Update runtime/src/claims.rs
This commit is contained in:
Shawn Tabrizi
2019-12-02 17:55:54 +01:00
committed by Gavin Wood
parent 675ca2e258
commit b637a77249
3 changed files with 58 additions and 7 deletions
+2
View File
@@ -199,6 +199,7 @@ fn staging_testnet_config_genesis() -> GenesisConfig {
}),
claims: Some(ClaimsConfig {
claims: vec![],
vesting: vec![],
})
}
}
@@ -338,6 +339,7 @@ pub fn testnet_genesis(
}),
claims: Some(ClaimsConfig {
claims: vec![],
vesting: vec![],
})
}
}