Fixed semantic conflict (split bytes into several constructor functions)
This commit is contained in:
parent
f166748757
commit
4977c18e05
@ -1931,7 +1931,7 @@ let check_signature () : unit result =
|
|||||||
let%bind program = type_file "./contracts/check_signature.ligo" in
|
let%bind program = type_file "./contracts/check_signature.ligo" in
|
||||||
let make_input = e_tuple [e_key pk_str ;
|
let make_input = e_tuple [e_key pk_str ;
|
||||||
e_signature (Signature.to_b58check signed) ;
|
e_signature (Signature.to_b58check signed) ;
|
||||||
e_bytes_ofbytes (Bytes.of_string "hello world")] in
|
e_bytes_string "hello world"] in
|
||||||
let make_expected = e_bool true in
|
let make_expected = e_bool true in
|
||||||
let%bind () = expect_eq program "check_signature" make_input make_expected in
|
let%bind () = expect_eq program "check_signature" make_input make_expected in
|
||||||
ok ()
|
ok ()
|
||||||
@ -1944,7 +1944,7 @@ let check_signature_mligo () : unit result =
|
|||||||
let%bind program = mtype_file "./contracts/check_signature.mligo" in
|
let%bind program = mtype_file "./contracts/check_signature.mligo" in
|
||||||
let make_input = e_tuple [e_key pk_str ;
|
let make_input = e_tuple [e_key pk_str ;
|
||||||
e_signature (Signature.to_b58check signed) ;
|
e_signature (Signature.to_b58check signed) ;
|
||||||
e_bytes_ofbytes (Bytes.of_string "hello world")] in
|
e_bytes_string "hello world"] in
|
||||||
let make_expected = e_bool true in
|
let make_expected = e_bool true in
|
||||||
let%bind () = expect_eq program "check_signature" make_input make_expected in
|
let%bind () = expect_eq program "check_signature" make_input make_expected in
|
||||||
ok ()
|
ok ()
|
||||||
@ -1957,7 +1957,7 @@ let check_signature_religo () : unit result =
|
|||||||
let%bind program = retype_file "./contracts/check_signature.religo" in
|
let%bind program = retype_file "./contracts/check_signature.religo" in
|
||||||
let make_input = e_tuple [e_key pk_str ;
|
let make_input = e_tuple [e_key pk_str ;
|
||||||
e_signature (Signature.to_b58check signed) ;
|
e_signature (Signature.to_b58check signed) ;
|
||||||
e_bytes_ofbytes (Bytes.of_string "hello world")] in
|
e_bytes_string "hello world"] in
|
||||||
let make_expected = e_bool true in
|
let make_expected = e_bool true in
|
||||||
let%bind () = expect_eq program "check_signature" make_input make_expected in
|
let%bind () = expect_eq program "check_signature" make_input make_expected in
|
||||||
ok ()
|
ok ()
|
||||||
|
Loading…
Reference in New Issue
Block a user