Skip to content

Commit

Permalink
Upstream 0.23.1 (#135)
Browse files Browse the repository at this point in the history
* disable factory cache by default
  • Loading branch information
dbaranovstonfi authored Jan 9, 2025
1 parent b239b06 commit f4d3301
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,5 @@
* Impl #BE-1892: Display for TonHash
* Impl #BE-1893: Library provider trait and implementation of BlockChainLibraryProvider
* NI: bump tonlib-sys to 2024.10.4
### v0.23.1
* NI: Factory cache disabled by default
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ resolver = "2"


[workspace.package]
version = "0.23.0"
version = "0.23.1"
edition = "2021"
description = "Rust SDK for The Open Network"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion client/src/contract/factory/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ impl TonContractFactoryBuilder {
let library_provider = Arc::new(BlockchainLibraryProvider::new(client, None));
TonContractFactoryBuilder {
client: client.clone(),
with_cache: true,
with_cache: false,
account_state_cache_capacity: 0,
account_state_cache_time_to_live: Duration::default(),
txid_cache_capacity: 0,
Expand Down

0 comments on commit f4d3301

Please sign in to comment.