fix: merge artifact

This commit is contained in:
Jude Nelson
2022-11-07 21:40:24 -05:00
parent 2a93025c12
commit 20e64a5e1d
2 changed files with 6 additions and 2 deletions

View File

@@ -998,6 +998,7 @@ fn test_index_of() {
CheckErrors::TypeError(
TypeSignature::list_of(TypeSignature::IntType, 1).unwrap(),
TypeSignature::list_of(TypeSignature::IntType, 2).unwrap(),
),
CheckErrors::ExpectedSequence(TypeSignature::IntType),
CheckErrors::TypeError(TypeSignature::IntType, TypeSignature::UIntType),
CheckErrors::TypeError(

View File

@@ -226,5 +226,8 @@ fn rotate_vrf_keypair_fixed_value_test() {
let mut keychain = Keychain::default(vec![0; 32]);
let new_vrf_pubkey = keychain.rotate_vrf_keypair(201);
// saved from bitcoind_integration_test
assert_eq!("63765f54b850bdcecc6df4ff0bf3fdb55e862d69aad4411d7093a07e5b39c7a6", new_vrf_pubkey.to_hex());
}
assert_eq!(
"63765f54b850bdcecc6df4ff0bf3fdb55e862d69aad4411d7093a07e5b39c7a6",
new_vrf_pubkey.to_hex()
);
}