Skip to content

Commit

Permalink
Merge pull request #164 from casper-network/bump_k256
Browse files Browse the repository at this point in the history
Bump `k256` dependency
  • Loading branch information
sacherjj authored Aug 8, 2024
2 parents 6b209d1 + 7087a12 commit 79e84bf
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions 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 execution_engine_testing/tests/src/test/explorer/faucet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -908,7 +908,7 @@ fn faucet_costs() {
// This test will fail if execution costs vary. The expected costs should not be updated
// without understanding why the cost has changed. If the costs do change, it should be
// reflected in the "Costs by Entry Point" section of the faucet crate's README.md.
const EXPECTED_FAUCET_INSTALL_COST: u64 = 144_886_340_756;
const EXPECTED_FAUCET_INSTALL_COST: u64 = 144_917_633_192;
const EXPECTED_FAUCET_SET_VARIABLES_COST: u64 = 135_605_050;
const EXPECTED_FAUCET_CALL_BY_INSTALLER_COST: u64 = 2_702_500_513;
const EXPECTED_FAUCET_CALL_BY_USER_COST: u64 = 2_637_119_046;
Expand Down
8 changes: 4 additions & 4 deletions smart_contracts/contracts/explorer/faucet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ If you try to invoke the contract before these variables are set, then you'll ge

| feature | cost |
|---------|------------------|
| faucet install | `82_537_580_930` |
| faucet set variables | `101_530_510` |
| faucet call by installer | `2_630_671_980` |
| faucet call by user | `2_604_081_250` |
| faucet install | `144_917_633_192` |
| faucet set variables | `135_605_050` |
| faucet call by installer | `2_702_500_513` |
| faucet call by user | `2_637_119_046` |
2 changes: 1 addition & 1 deletion types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ getrandom = { version = "0.2.0", features = ["rdrand"], optional = true }
hex = { version = "0.4.2", default-features = false, features = ["alloc"] }
hex_fmt = "0.3.0"
humantime = { version = "2", optional = true }
k256 = { version = "0.13.1", default-features = false, features = ["ecdsa", "sha256"] }
k256 = { version = "0.13.3", default-features = false, features = ["ecdsa", "sha256"] }
num = { version = "0.4.0", default-features = false, features = ["alloc"] }
num-derive = { version = "0.3.0", default-features = false }
num-integer = { version = "0.1.42", default-features = false }
Expand Down

0 comments on commit 79e84bf

Please sign in to comment.