Skip to content

Commit

Permalink
remove devenv and blockchain modules
Browse files Browse the repository at this point in the history
  • Loading branch information
neodix42 committed Nov 19, 2024
1 parent cf1a553 commit 1b4e9d3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ You can use each submodule individually. Click the module below to get more deta
* [Func](func/README.md) - wrapper for using with external precompiled func binary.
* [Tolk](tolk/README.md) - wrapper for using with external precompiled tolk binary.
* [TonConnect](tonconnect/README.md) - implementation of Ton Connect standard.
* [Blockchain](blockchain/README.md) - To Do.
* [Utils](utils/README.md) - create private and public keys, convert data, etc.

### Features
Expand Down
13 changes: 7 additions & 6 deletions tonlib/src/main/java/org/ton/java/tonlib/Tonlib.java
Original file line number Diff line number Diff line change
Expand Up @@ -1514,16 +1514,17 @@ public RawTransaction tryLocateTxByIncomingMessage(
/**
* PR pending https://github.com/ton-blockchain/ton/pull/1379 todo
*
* @param address
* @param msgHexHash
* @return
* @param address String
* @param msgHashBase64 msgHexHash
* @return RawTransaction
*/
private RawTransaction getTxByMessageHash(String address, String msgHexHash) {
private RawTransaction getTxByMessageHash(String address, String msgHashBase64) {
RawTransactions rawTransactions = getRawTransactions(address, null, null);
for (RawTransaction tx : rawTransactions.getTransactions()) {
if (nonNull(tx.getIn_msg())) {
// if (tx.getIn_msg().hashCode()) {
// }
if (tx.getIn_msg().getHash().equals(msgHashBase64)) {
return tx;
}
}
}
return null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
public class RawMessage implements Serializable {
@SerializedName("@type")
final String type = "raw.message";

String hash;
AccountAddressOnly source;
AccountAddressOnly destination;
String value;
Expand Down

0 comments on commit 1b4e9d3

Please sign in to comment.