Convert a redeemScript to a P2SH address Convenience function: equivalent to P2SHBitcoinAddress.from_scriptPubKey(redeemScript.to_p2sh_scriptPubKey())
(cls, redeemScript)
| 154 | |
| 155 | @classmethod |
| 156 | def from_redeemScript(cls, redeemScript): |
| 157 | """Convert a redeemScript to a P2SH address |
| 158 | |
| 159 | Convenience function: equivalent to P2SHBitcoinAddress.from_scriptPubKey(redeemScript.to_p2sh_scriptPubKey()) |
| 160 | """ |
| 161 | return cls.from_scriptPubKey(redeemScript.to_p2sh_scriptPubKey()) |
| 162 | |
| 163 | @classmethod |
| 164 | def from_scriptPubKey(cls, scriptPubKey): |