Skip to content

Commit

Permalink
Bump env (#1051)
Browse files Browse the repository at this point in the history
### What

[TODO: Short statement about what is changing.]

### Why

[TODO: Why this change is being made. Include any context required to
understand the why.]

### Known limitations

[TODO or N/A]

---------

Co-authored-by: Siddharth Suresh <siddharth@stellar.org>
  • Loading branch information
jayz22 and sisuresh authored Aug 10, 2023
1 parent 5943aa6 commit df9334d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 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.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,17 @@ soroban-token-sdk = { version = "0.9.2", path = "soroban-token-sdk" }
[workspace.dependencies.soroban-env-common]
version = "0.0.17"
git = "https://github.com/stellar/rs-soroban-env"
rev = "c5607a2e9e296b2636b46dc910387aa3446b3e29"
rev = "048be90e10dfda6486141f96ea86e32fb91681f4"

[workspace.dependencies.soroban-env-guest]
version = "0.0.17"
git = "https://github.com/stellar/rs-soroban-env"
rev = "c5607a2e9e296b2636b46dc910387aa3446b3e29"
rev = "048be90e10dfda6486141f96ea86e32fb91681f4"

[workspace.dependencies.soroban-env-host]
version = "0.0.17"
git = "https://github.com/stellar/rs-soroban-env"
rev = "c5607a2e9e296b2636b46dc910387aa3446b3e29"
rev = "048be90e10dfda6486141f96ea86e32fb91681f4"

[workspace.dependencies.stellar-strkey]
version = "0.0.7"
Expand All @@ -60,7 +60,7 @@ rev = "e6ba45c60c16de28c7522586b80ed0150157df73"
[workspace.dependencies.stellar-xdr]
version = "0.0.17"
git = "https://github.com/stellar/rs-stellar-xdr"
rev = "d6e02584ac9f4046bf38eaf445ced0d4f33631fd"
rev = "4876e5eb20016caebbd13bcf6401626dc6073b8e"
default-features = false

#[patch."https://github.com/stellar/rs-soroban-env"]
Expand Down
2 changes: 1 addition & 1 deletion soroban-sdk/src/tests/budget.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ fn test_budget() {
let b = client.add();
e.budget().print();

assert_eq!(e.budget().tracker(ContractCostType::MapEntry), (13, None));
assert_eq!(e.budget().tracker(ContractCostType::MapEntry), (19, None));
assert_eq!(b, map![&e, (1, 10), (2, 20)]);
}

0 comments on commit df9334d

Please sign in to comment.