Skip to content

Commit

Permalink
Merge pull request #163 from everx-labs/fix_hex_capabilities
Browse files Browse the repository at this point in the history
fix hex capabilities
  • Loading branch information
AtomXY authored Sep 13, 2024
2 parents 6a0f371 + 2e569c2 commit 2df295a
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 53 deletions.
85 changes: 35 additions & 50 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 docker/ton-node/blockchain.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
],
"p8": {
"version": 57,
"capabilities": "7E8827372E"
"capabilities": "0x7E8837372E"
},
"p9": [
0,
Expand Down
2 changes: 1 addition & 1 deletion node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
edition = '2021'
build = 'build.rs'
name = 'evernode_se'
version = '0.42.0'
version = '0.42.1'

[dependencies]
# External
Expand Down
2 changes: 1 addition & 1 deletion node/src/engine/messages.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ impl InMessagesQueue {
if let Ok(cell) = msg.serialize() {
if let Ok(data) = ever_block::write_boc(&cell) {
std::fs::create_dir_all("export").ok();
std::fs::write(&format!("export/msg_{:x}", cell.repr_hash()), &data).ok();
std::fs::write(format!("export/msg_{:x}", cell.repr_hash()), &data).ok();
}
}
}
Expand Down

0 comments on commit 2df295a

Please sign in to comment.