View Source BitcoinLib.Script.Opcodes.Crypto.CheckSigVerify (BitcoinLib v0.4.7)

Based on https://en.bitcoin.it/wiki/Script

Word OP_CHECKSIGVERIFY Opcode 173 Hex 0xad Input sig pubkey Output Nothing / fail Description Same as OP_CHECKSIG, but OP_VERIFY is executed afterward.

Link to this section Summary

Functions

Returns <<0xad>>

NOT IMPLEMENTED YET

v()

Returns 0xad

Link to this section Types

@type t() :: BitcoinLib.Script.Opcodes.Crypto.CheckSigVerify

Link to this section Functions

@spec encode() :: <<_::8>>

Returns <<0xad>>

examples

Examples

iex> BitcoinLib.Script.Opcodes.Crypto.CheckSigVerify.encode()
<<0xad>>
Link to this function

execute(check_sig_verify, list)

View Source
@spec execute(t(), list()) :: {:ok, [list()]} | {:error, binary()}

NOT IMPLEMENTED YET

@spec v() :: 173

Returns 0xad

examples

Examples

iex> BitcoinLib.Script.Opcodes.Crypto.CheckSigVerify.v()
0xad