Skip to content

Commit

Permalink
bump env and update budget print (#896)
Browse files Browse the repository at this point in the history
### What

Bump env to pick up the increased memory budget and update budget print.

### Why

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

### Known limitations

[TODO or N/A]
  • Loading branch information
jayz22 authored Mar 22, 2023
1 parent d6109a4 commit 9947607
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,17 @@ soroban-token-spec = { version = "0.6.0", path = "soroban-token-spec" }
[workspace.dependencies.soroban-env-common]
version = "0.0.14"
git = "https://github.com/stellar/rs-soroban-env"
rev = "7dde7cb0b35957856a1e0c11432e00532ae20cf8"
rev = "75b21696b0636bd145b7acb47a6fed4621b05978"

[workspace.dependencies.soroban-env-guest]
version = "0.0.14"
git = "https://github.com/stellar/rs-soroban-env"
rev = "7dde7cb0b35957856a1e0c11432e00532ae20cf8"
rev = "75b21696b0636bd145b7acb47a6fed4621b05978"

[workspace.dependencies.soroban-env-host]
version = "0.0.14"
git = "https://github.com/stellar/rs-soroban-env"
rev = "7dde7cb0b35957856a1e0c11432e00532ae20cf8"
rev = "75b21696b0636bd145b7acb47a6fed4621b05978"

[workspace.dependencies.stellar-strkey]
version = "0.0.7"
Expand Down
2 changes: 1 addition & 1 deletion soroban-sdk/src/testutils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ pub mod budget {

/// Print the budget costs and inputs to stdout.
pub fn print(&self) {
println!("{}", self);
println!("{}", self.0);
}
}
}
Expand Down

0 comments on commit 9947607

Please sign in to comment.