Skip to content

Commit

Permalink
Merge pull request #322 from rafal-ch/update_deps
Browse files Browse the repository at this point in the history
Point `casper-types` and `casper-binary-port` back to `feat-2.0`
  • Loading branch information
rafal-ch authored Jun 13, 2024
2 parents 10c8301 + 843d24b commit 4add99d
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ members = [
anyhow = "1"
async-stream = "0.3.4"
async-trait = "0.1.77"
casper-types = { git = "https://github.com/jacek-casper/casper-node.git", branch = "reward-binary-request" }
casper-binary-port = { git = "https://github.com/jacek-casper/casper-node.git", branch = "reward-binary-request" }
casper-types = { git = "https://github.com/casper-network/casper-node.git", branch = "feat-2.0" }
casper-binary-port = { git = "https://github.com/casper-network/casper-node.git", branch = "feat-2.0" }
casper-event-sidecar = { path = "./event_sidecar", version = "1.0.0" }
casper-event-types = { path = "./types", version = "1.0.0" }
casper-rpc-sidecar = { path = "./rpc_sidecar", version = "1.0.0" }
Expand Down
14 changes: 14 additions & 0 deletions resources/test/rpc_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4972,6 +4972,8 @@
"bonding_purse",
"delegation_rate",
"inactive",
"maximum_delegation_amount",
"minimum_delegation_amount",
"staked_amount",
"validator_public_key"
],
Expand Down Expand Up @@ -5020,6 +5022,18 @@
"inactive": {
"description": "`true` if validator has been \"evicted\"",
"type": "boolean"
},
"minimum_delegation_amount": {
"description": "Minimum allowed delegation amount in motes",
"type": "integer",
"format": "uint64",
"minimum": 0.0
},
"maximum_delegation_amount": {
"description": "Maximum allowed delegation amount in motes",
"type": "integer",
"format": "uint64",
"minimum": 0.0
}
},
"additionalProperties": false
Expand Down
14 changes: 14 additions & 0 deletions resources/test/speculative_rpc_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -2947,6 +2947,8 @@
"bonding_purse",
"delegation_rate",
"inactive",
"maximum_delegation_amount",
"minimum_delegation_amount",
"staked_amount",
"validator_public_key"
],
Expand Down Expand Up @@ -2995,6 +2997,18 @@
"inactive": {
"description": "`true` if validator has been \"evicted\"",
"type": "boolean"
},
"minimum_delegation_amount": {
"description": "Minimum allowed delegation amount in motes",
"type": "integer",
"format": "uint64",
"minimum": 0.0
},
"maximum_delegation_amount": {
"description": "Maximum allowed delegation amount in motes",
"type": "integer",
"format": "uint64",
"minimum": 0.0
}
},
"additionalProperties": false
Expand Down

0 comments on commit 4add99d

Please sign in to comment.