Skip to content

Commit

Permalink
bump env (#1115)
Browse files Browse the repository at this point in the history
  • Loading branch information
sisuresh authored Oct 13, 2023
1 parent 22f64b1 commit 729ed3a
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 @@ -42,17 +42,17 @@ soroban-token-sdk = { version = "20.0.0-rc2", path = "soroban-token-sdk" }
[workspace.dependencies.soroban-env-common]
version = "20.0.0-rc2"
git = "https://github.com/stellar/rs-soroban-env"
rev = "84b6a1f5ee3e6e515c55fe5b73af9c5877efeb12"
rev = "91f44778389490ad863d61a8a90ac9875ba6d8fd"

[workspace.dependencies.soroban-env-guest]
version = "20.0.0-rc2"
git = "https://github.com/stellar/rs-soroban-env"
rev = "84b6a1f5ee3e6e515c55fe5b73af9c5877efeb12"
rev = "91f44778389490ad863d61a8a90ac9875ba6d8fd"

[workspace.dependencies.soroban-env-host]
version = "20.0.0-rc2"
git = "https://github.com/stellar/rs-soroban-env"
rev = "84b6a1f5ee3e6e515c55fe5b73af9c5877efeb12"
rev = "91f44778389490ad863d61a8a90ac9875ba6d8fd"

[workspace.dependencies.stellar-strkey]
version = "0.0.7"
Expand All @@ -62,7 +62,7 @@ rev = "e6ba45c60c16de28c7522586b80ed0150157df73"
[workspace.dependencies.stellar-xdr]
version = "20.0.0-rc1"
git = "https://github.com/stellar/rs-stellar-xdr"
rev = "4bf4911f0f6ba44e482674a7a9090c22ee97511f"
rev = "9c97e4fa909a0b6455547a4f4a95800696b2a69a"
default-features = false
features = ["curr"]

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), (19, None));
assert_eq!(e.budget().tracker(ContractCostType::VisitObject), (4, None));
assert_eq!(b, map![&e, (1, 10), (2, 20)]);
}

0 comments on commit 729ed3a

Please sign in to comment.