3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-11 17:55:53 +00:00

Script: fix javadoc

This commit is contained in:
Mike Hearn 2014-12-09 14:23:23 +01:00
parent 46ed65935c
commit ab0b6d75fa

View File

@ -252,15 +252,15 @@ public class Script {
}
/**
* If a program matches the standard template DUP HASH160 <pubkey hash> EQUALVERIFY CHECKSIG
* <p>If a program matches the standard template DUP HASH160 &lt;pubkey hash&gt; EQUALVERIFY CHECKSIG
* then this function retrieves the third element.
* In this case, this is useful for fetching the destination address of a transaction.
* In this case, this is useful for fetching the destination address of a transaction.</p>
*
* If a program matches the standard template HASH160 <script hash> EQUAL
* <p>If a program matches the standard template HASH160 &lt;script hash&gt; EQUAL
* then this function retrieves the second element.
* In this case, this is useful for fetching the hash of the redeem script of a transaction.
* In this case, this is useful for fetching the hash of the redeem script of a transaction.</p>
*
* Otherwise it throws a ScriptException.
* <p>Otherwise it throws a ScriptException.</p>
*
*/
public byte[] getPubKeyHash() throws ScriptException {