diff --git a/core/src/main/java/org/bitcoinj/script/Script.java b/core/src/main/java/org/bitcoinj/script/Script.java index a9d16a61..e99c3a1f 100644 --- a/core/src/main/java/org/bitcoinj/script/Script.java +++ b/core/src/main/java/org/bitcoinj/script/Script.java @@ -246,14 +246,6 @@ public class Script { return ScriptPattern.isPayToPubKeyHash(this); } - /** - * An alias for isPayToScriptHash. - */ - @Deprecated - public boolean isSentToP2SH() { - return isPayToScriptHash(); - } - /** *
If a program matches the standard template DUP HASH160 <pubkey hash> EQUALVERIFY CHECKSIG * then this function retrieves the third element.