- Add the Codota plugin to your IDE and get smart completions
private void myMethod () {StringBuilder s =
new StringBuilder()
new StringBuilder(32)
String str;new StringBuilder(str)
- Smart code suggestions by Codota
}
private byte[] createClosingMsgHash(Address senderAddress, BigInteger openBlockNumber, BigInteger owedBalance, ECKey receiverECKey, Address channelManagerAddr) { byte[] closingMsgHash = createClosingMsgHashRaw(senderAddress, openBlockNumber, owedBalance, channelManagerAddr); return receiverECKey.sign(closingMsgHash) .toByteArray(); }
private byte[] createBalanceMsgHash(Address receiverAddress, BigInteger openBlockNumber, BigInteger owedBalance, ECKey senderECKey, Address channelManagerAddr) { byte[] balanceMsgHash = createBalanceMsgHashRaw(receiverAddress, openBlockNumber, owedBalance, channelManagerAddr); return senderECKey.sign(balanceMsgHash) .toByteArray(); }
public String toHex() { return normalize(Hex.toHexString(toByteArray())); }