scripteq: simple helper for comparing scripts.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell
2016-05-02 15:59:56 +09:30
parent 03a538ca02
commit 7efc0efab1
3 changed files with 17 additions and 3 deletions

View File

@@ -476,3 +476,13 @@ u8 **bitcoin_witness_secret(const tal_t *ctx,
return witness;
}
bool scripteq(const u8 *s1, size_t s1len, const u8 *s2, size_t s2len)
{
memcheck(s1, s1len);
memcheck(s2, s2len);
if (s1len != s2len)
return false;
return memcmp(s1, s2, s1len) == 0;
}