nguyenhuedang
Results
1
issues of
nguyenhuedang
Hi, I wanna know how to compute the transaction hash from a Transaction instance. I have tried ```javascript const hash = byteArray2hexStr(SHA256(tx.getRawData().serializeBinary())); ``` Because of [this implementation](https://github.com/tronprotocol/wallet-cli/blob/57e6ddc635270d7434fc39cb73cef305f774be5b/src/main/java/org/tron/walletserver/WalletClient.java#L289) in java-tron ```java...