You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Self::InvalidInt{ref bytes,ref err } => write!(f,"push {} of length {} is not a key, hash or minimal integer: {}", bytes.as_bytes().as_hex(), bytes.len(), err),
314
+
Self::InvalidOpcode(ref op) => write!(f,"found opcode {} which does not occur in Miniscript", op),
315
+
Self::NegativeInt{ref bytes, n } => write!(f,"push {} of length {} parses as a negative number {} which does not occur in Miniscript", bytes.as_bytes().as_hex(), bytes.len(), n),
316
+
Self::NonMinimalVerify(ref op) => write!(f,"found {} VERIFY (should be one opcode, {}VERIFY)", op, op),
0 commit comments