From 8d98c3e1e24b318119564e7decfb0575146f9a8f Mon Sep 17 00:00:00 2001 From: Andreas Schildbach Date: Sun, 25 Feb 2018 22:18:50 +0100 Subject: [PATCH] Script: Remove deprecated matcher method isSentToP2SH(). --- core/src/main/java/org/bitcoinj/script/Script.java | 8 -------- 1 file changed, 8 deletions(-) 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.