From 11e8ec8781f0cf95f43aea47da246cac88ac3117 Mon Sep 17 00:00:00 2001 From: Cameron MacKeen Date: Mon, 3 Jun 2019 12:24:03 -0700 Subject: [PATCH] Transaction: Fix typos in JavaDoc. --- core/src/main/java/org/bitcoinj/core/Transaction.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/src/main/java/org/bitcoinj/core/Transaction.java b/core/src/main/java/org/bitcoinj/core/Transaction.java index 541ff2b1..0134a475 100644 --- a/core/src/main/java/org/bitcoinj/core/Transaction.java +++ b/core/src/main/java/org/bitcoinj/core/Transaction.java @@ -1035,7 +1035,7 @@ public class Transaction extends ChildMessage { * * @param inputIndex Which input to calculate the signature for, as an index. * @param key The private key used to calculate the signature. - * @param redeemScript Byte-exact contents of the scriptPubKey that is being satisified, or the P2SH redeem script. + * @param redeemScript Byte-exact contents of the scriptPubKey that is being satisfied, or the P2SH redeem script. * @param hashType Signing mode, see the enum for documentation. * @param anyoneCanPay Signing mode, see the SigHash enum for documentation. * @return A newly calculated signature object that wraps the r, s and sighash components. @@ -1054,7 +1054,7 @@ public class Transaction extends ChildMessage { * * @param inputIndex Which input to calculate the signature for, as an index. * @param key The private key used to calculate the signature. - * @param redeemScript The scriptPubKey that is being satisified, or the P2SH redeem script. + * @param redeemScript The scriptPubKey that is being satisfied, or the P2SH redeem script. * @param hashType Signing mode, see the enum for documentation. * @param anyoneCanPay Signing mode, see the SigHash enum for documentation. * @return A newly calculated signature object that wraps the r, s and sighash components. @@ -1075,7 +1075,7 @@ public class Transaction extends ChildMessage { * @param inputIndex Which input to calculate the signature for, as an index. * @param key The private key used to calculate the signature. * @param aesKey The AES key to use for decryption of the private key. If null then no decryption is required. - * @param redeemScript Byte-exact contents of the scriptPubKey that is being satisified, or the P2SH redeem script. + * @param redeemScript Byte-exact contents of the scriptPubKey that is being satisfied, or the P2SH redeem script. * @param hashType Signing mode, see the enum for documentation. * @param anyoneCanPay Signing mode, see the SigHash enum for documentation. * @return A newly calculated signature object that wraps the r, s and sighash components. @@ -1096,7 +1096,7 @@ public class Transaction extends ChildMessage { * @param inputIndex Which input to calculate the signature for, as an index. * @param key The private key used to calculate the signature. * @param aesKey The AES key to use for decryption of the private key. If null then no decryption is required. - * @param redeemScript The scriptPubKey that is being satisified, or the P2SH redeem script. + * @param redeemScript The scriptPubKey that is being satisfied, or the P2SH redeem script. * @param hashType Signing mode, see the enum for documentation. * @param anyoneCanPay Signing mode, see the SigHash enum for documentation. * @return A newly calculated signature object that wraps the r, s and sighash components.