OSDN Git Service

modify retire and muti-sign
[bytom/bytom-java-sdk.git] / tx-signer / src / main / java / io / bytom / types / Asset.java
index 1ff2706..c1885e0 100755 (executable)
@@ -71,6 +71,7 @@ public class Asset {
     private String computeIssueProgram(String rootKey, int keyIndex) throws NoSuchAlgorithmException, SignatureException, InvalidKeyException {\r
         byte[] derivePrivateKey = DerivePrivateKey.derivePrivateKey(rootKey, keyIndex);\r
         byte[] deriveXpub = DeriveXpub.deriveXpub(derivePrivateKey);\r
+\r
         String issueProgram = "ae20" + Hex.toHexString(deriveXpub).substring(0, 64) + "5151ad";\r
         return issueProgram;\r
     }\r