3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-15 03:35:52 +00:00

Script: Remove deprecated matcher method isSentToP2SH().

This commit is contained in:
Andreas Schildbach 2018-02-25 22:18:50 +01:00
parent fc4a29e3cb
commit 8d98c3e1e2

View File

@ -246,14 +246,6 @@ public class Script {
return ScriptPattern.isPayToPubKeyHash(this); return ScriptPattern.isPayToPubKeyHash(this);
} }
/**
* An alias for isPayToScriptHash.
*/
@Deprecated
public boolean isSentToP2SH() {
return isPayToScriptHash();
}
/** /**
* <p>If a program matches the standard template DUP HASH160 &lt;pubkey hash&gt; 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. * then this function retrieves the third element.