2018-04-22 12:50:34 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Copyright (c) 2014 - 2018. *)
|
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
|
|
|
open Proto_alpha
|
|
|
|
open Alpha_context
|
|
|
|
open Apply_operation_result
|
|
|
|
|
2018-04-16 02:44:24 +04:00
|
|
|
let get_branch (rpc_config: #Proto_alpha.full)
|
|
|
|
~chain ~(block : Block_services.block) branch =
|
2018-04-22 12:50:34 +04:00
|
|
|
let branch = Option.unopt ~default:0 branch in (* TODO export parameter *)
|
|
|
|
begin
|
|
|
|
match block with
|
|
|
|
| `Head n -> return (`Head (n+branch))
|
|
|
|
| `Hash (h,n) -> return (`Hash (h,n+branch))
|
|
|
|
| `Genesis -> return `Genesis
|
|
|
|
end >>=? fun block ->
|
2018-04-22 16:40:44 +04:00
|
|
|
Shell_services.Blocks.hash rpc_config ~chain ~block () >>=? fun hash ->
|
2018-04-22 12:50:34 +04:00
|
|
|
return hash
|
|
|
|
|
2018-04-30 21:06:06 +04:00
|
|
|
type 'kind preapply_result =
|
|
|
|
Operation_hash.t * 'kind operation * 'kind operation_metadata
|
2018-04-22 12:50:34 +04:00
|
|
|
|
2018-04-30 21:06:06 +04:00
|
|
|
type 'kind result_list =
|
|
|
|
Operation_hash.t * 'kind contents_list * 'kind contents_result_list
|
|
|
|
|
|
|
|
type 'kind result =
|
|
|
|
Operation_hash.t * 'kind contents * 'kind contents_result
|
|
|
|
|
|
|
|
let preapply (type t)
|
2018-04-16 02:44:24 +04:00
|
|
|
(cctxt: #Proto_alpha.full) ~chain ~block
|
2018-04-30 21:06:06 +04:00
|
|
|
?branch ?src_sk (contents : t contents_list) =
|
2018-04-16 02:44:24 +04:00
|
|
|
get_branch cctxt ~chain ~block branch >>=? fun branch ->
|
2018-04-22 12:50:34 +04:00
|
|
|
let bytes =
|
|
|
|
Data_encoding.Binary.to_bytes_exn
|
2018-04-21 01:04:33 +04:00
|
|
|
Operation.unsigned_encoding
|
2018-04-30 21:06:06 +04:00
|
|
|
({ branch }, Contents_list contents) in
|
2018-04-22 12:50:34 +04:00
|
|
|
let watermark =
|
|
|
|
match contents with
|
2018-05-06 04:08:39 +04:00
|
|
|
| Single (Endorsement _) -> Signature.Endorsement
|
2018-04-30 21:06:06 +04:00
|
|
|
| _ -> Signature.Generic_operation in
|
2018-04-22 12:50:34 +04:00
|
|
|
begin
|
|
|
|
match src_sk with
|
|
|
|
| None -> return None
|
|
|
|
| Some src_sk ->
|
2018-06-17 02:07:58 +04:00
|
|
|
Client_keys.sign cctxt
|
2018-04-22 12:50:34 +04:00
|
|
|
~watermark src_sk bytes >>=? fun signature ->
|
|
|
|
return (Some signature)
|
|
|
|
end >>=? fun signature ->
|
2018-04-30 21:06:06 +04:00
|
|
|
let op : _ Operation.t =
|
2018-04-22 12:50:34 +04:00
|
|
|
{ shell = { branch } ;
|
2018-04-21 01:04:33 +04:00
|
|
|
protocol_data = { contents ; signature } } in
|
2018-04-22 12:50:34 +04:00
|
|
|
let oph = Operation.hash op in
|
2018-04-22 16:40:44 +04:00
|
|
|
Alpha_block_services.Helpers.Preapply.operations
|
2018-04-30 21:06:06 +04:00
|
|
|
cctxt ~chain ~block [Operation.pack op] >>=? function
|
|
|
|
| [(Operation_data op', Operation_metadata result)] -> begin
|
|
|
|
match Operation.equal
|
|
|
|
op { shell = { branch } ; protocol_data = op' },
|
|
|
|
Apply_operation_result.kind_equal_list contents result.contents with
|
|
|
|
| Some Operation.Eq, Some Apply_operation_result.Eq ->
|
|
|
|
return ((oph, op, result) : t preapply_result)
|
|
|
|
| _ -> failwith "Unexpected result"
|
|
|
|
end
|
2018-04-21 13:31:17 +04:00
|
|
|
| _ -> failwith "Unexpected result"
|
2018-04-22 12:50:34 +04:00
|
|
|
|
2018-06-17 04:02:42 +04:00
|
|
|
let simulate (type t)
|
|
|
|
(cctxt: #Proto_alpha.full) ~chain ~block
|
|
|
|
?branch (contents : t contents_list) =
|
|
|
|
get_branch cctxt ~chain ~block branch >>=? fun branch ->
|
|
|
|
let op : _ Operation.t =
|
|
|
|
{ shell = { branch } ;
|
|
|
|
protocol_data = { contents ; signature = None } } in
|
|
|
|
let oph = Operation.hash op in
|
|
|
|
Alpha_services.Helpers.Scripts.run_operation
|
|
|
|
cctxt (chain, block) (Operation.pack op) >>=? function
|
|
|
|
| (Operation_data op', Operation_metadata result) -> begin
|
|
|
|
match Operation.equal
|
|
|
|
op { shell = { branch } ; protocol_data = op' },
|
|
|
|
Apply_operation_result.kind_equal_list contents result.contents with
|
|
|
|
| Some Operation.Eq, Some Apply_operation_result.Eq ->
|
|
|
|
return ((oph, op, result) : t preapply_result)
|
|
|
|
| _ -> failwith "Unexpected result"
|
|
|
|
end
|
|
|
|
| _ -> failwith "Unexpected result"
|
|
|
|
|
2018-04-30 21:06:06 +04:00
|
|
|
let estimated_gas_single
|
|
|
|
(type kind)
|
|
|
|
(Manager_operation_result { operation_result ;
|
|
|
|
internal_operation_results }
|
|
|
|
: kind Kind.manager contents_result) =
|
|
|
|
let consumed_gas (type kind) (result : kind manager_operation_result) =
|
|
|
|
match result with
|
|
|
|
| Applied (Transaction_result { consumed_gas }) -> Ok consumed_gas
|
|
|
|
| Applied (Origination_result { consumed_gas }) -> Ok consumed_gas
|
|
|
|
| Applied Reveal_result -> Ok Z.zero
|
|
|
|
| Applied Delegation_result -> Ok Z.zero
|
|
|
|
| Skipped _ -> assert false
|
|
|
|
| Failed (_, errs) -> Alpha_environment.wrap_error (Error errs) in
|
|
|
|
List.fold_left
|
|
|
|
(fun acc (Internal_operation_result (_, r)) ->
|
|
|
|
acc >>? fun acc ->
|
|
|
|
consumed_gas r >>? fun gas ->
|
|
|
|
Ok (Z.add acc gas))
|
|
|
|
(consumed_gas operation_result) internal_operation_results
|
|
|
|
|
|
|
|
let rec estimated_gas :
|
|
|
|
type kind. kind Kind.manager contents_result_list -> _ =
|
|
|
|
function
|
|
|
|
| Single_result res -> estimated_gas_single res
|
|
|
|
| Cons_result (res, rest) ->
|
|
|
|
estimated_gas_single res >>? fun gas1 ->
|
|
|
|
estimated_gas rest >>? fun gas2 ->
|
|
|
|
Ok (Z.add gas1 gas2)
|
|
|
|
|
|
|
|
let estimated_storage_single
|
|
|
|
(type kind)
|
|
|
|
(Manager_operation_result { operation_result ;
|
|
|
|
internal_operation_results }
|
|
|
|
: kind Kind.manager contents_result) =
|
|
|
|
let storage_size_diff (type kind) (result : kind manager_operation_result) =
|
|
|
|
match result with
|
|
|
|
| Applied (Transaction_result { storage_size_diff }) -> Ok storage_size_diff
|
|
|
|
| Applied (Origination_result { storage_size_diff }) -> Ok storage_size_diff
|
2018-06-13 16:41:40 +04:00
|
|
|
| Applied Reveal_result -> Ok Z.zero
|
|
|
|
| Applied Delegation_result -> Ok Z.zero
|
2018-04-30 21:06:06 +04:00
|
|
|
| Skipped _ -> assert false
|
|
|
|
| Failed (_, errs) -> Alpha_environment.wrap_error (Error errs) in
|
|
|
|
List.fold_left
|
|
|
|
(fun acc (Internal_operation_result (_, r)) ->
|
|
|
|
acc >>? fun acc ->
|
|
|
|
storage_size_diff r >>? fun storage ->
|
2018-06-13 16:41:40 +04:00
|
|
|
Ok (Z.add acc storage))
|
2018-04-30 21:06:06 +04:00
|
|
|
(storage_size_diff operation_result) internal_operation_results
|
|
|
|
|
|
|
|
let estimated_storage res =
|
|
|
|
let rec estimated_storage :
|
|
|
|
type kind. kind Kind.manager contents_result_list -> _ =
|
|
|
|
function
|
|
|
|
| Single_result res -> estimated_storage_single res
|
|
|
|
| Cons_result (res, rest) ->
|
|
|
|
estimated_storage_single res >>? fun storage1 ->
|
|
|
|
estimated_storage rest >>? fun storage2 ->
|
2018-06-13 16:41:40 +04:00
|
|
|
Ok (Z.add storage1 storage2) in
|
2018-04-30 21:06:06 +04:00
|
|
|
estimated_storage res >>? fun diff ->
|
2018-06-13 16:41:40 +04:00
|
|
|
Ok (max Z.zero diff)
|
2018-04-30 21:06:06 +04:00
|
|
|
|
|
|
|
let originated_contracts_single
|
|
|
|
(type kind)
|
|
|
|
(Manager_operation_result { operation_result ;
|
|
|
|
internal_operation_results }
|
|
|
|
: kind Kind.manager contents_result) =
|
|
|
|
let originated_contracts (type kind) (result : kind manager_operation_result) =
|
|
|
|
match result with
|
|
|
|
| Applied (Transaction_result { originated_contracts }) -> Ok originated_contracts
|
|
|
|
| Applied (Origination_result { originated_contracts }) -> Ok originated_contracts
|
|
|
|
| Applied Reveal_result -> Ok []
|
|
|
|
| Applied Delegation_result -> Ok []
|
|
|
|
| Skipped _ -> assert false
|
|
|
|
| Failed (_, errs) -> Alpha_environment.wrap_error (Error errs) in
|
|
|
|
List.fold_left
|
|
|
|
(fun acc (Internal_operation_result (_, r)) ->
|
|
|
|
acc >>? fun acc ->
|
|
|
|
originated_contracts r >>? fun contracts ->
|
|
|
|
Ok (List.rev_append contracts acc))
|
|
|
|
(originated_contracts operation_result >|? List.rev)
|
|
|
|
internal_operation_results
|
|
|
|
|
|
|
|
let rec originated_contracts :
|
|
|
|
type kind. kind contents_result_list -> _ =
|
|
|
|
function
|
|
|
|
| Single_result (Manager_operation_result _ as res) ->
|
|
|
|
originated_contracts_single res >|? List.rev
|
|
|
|
| Single_result _ -> Ok []
|
|
|
|
| Cons_result (res, rest) ->
|
|
|
|
originated_contracts_single res >>? fun contracts1 ->
|
|
|
|
originated_contracts rest >>? fun contracts2 ->
|
|
|
|
Ok (List.rev_append contracts1 contracts2)
|
|
|
|
|
|
|
|
let detect_script_failure :
|
|
|
|
type kind. kind operation_metadata -> _ =
|
|
|
|
let rec detect_script_failure :
|
|
|
|
type kind. kind contents_result_list -> _ =
|
|
|
|
let detect_script_failure_single
|
|
|
|
(type kind)
|
|
|
|
(Manager_operation_result { operation_result ;
|
|
|
|
internal_operation_results }
|
|
|
|
: kind Kind.manager contents_result) =
|
|
|
|
let detect_script_failure (type kind) (result : kind manager_operation_result) =
|
|
|
|
match result with
|
|
|
|
| Applied _ -> Ok ()
|
|
|
|
| Skipped _ -> assert false
|
|
|
|
| Failed (_, errs) ->
|
|
|
|
record_trace
|
|
|
|
(failure "The transfer simulation failed.")
|
|
|
|
(Alpha_environment.wrap_error (Error errs)) in
|
2018-04-22 22:56:51 +04:00
|
|
|
List.fold_left
|
2018-04-30 21:06:06 +04:00
|
|
|
(fun acc (Internal_operation_result (_, r)) ->
|
|
|
|
acc >>? fun () ->
|
|
|
|
detect_script_failure r)
|
|
|
|
(detect_script_failure operation_result)
|
|
|
|
internal_operation_results in
|
|
|
|
function
|
|
|
|
| Single_result (Manager_operation_result _ as res) ->
|
|
|
|
detect_script_failure_single res
|
|
|
|
| Single_result _ ->
|
|
|
|
Ok ()
|
|
|
|
| Cons_result (res, rest) ->
|
|
|
|
detect_script_failure_single res >>? fun () ->
|
|
|
|
detect_script_failure rest in
|
|
|
|
fun { contents } -> detect_script_failure contents
|
|
|
|
|
2018-04-22 22:56:51 +04:00
|
|
|
|
2018-04-22 21:57:49 +04:00
|
|
|
let may_patch_limits
|
2018-04-30 21:06:06 +04:00
|
|
|
(type kind) (cctxt : #Proto_alpha.full) ~chain ~block ?branch
|
2018-06-17 04:02:42 +04:00
|
|
|
(contents: kind contents_list) : kind contents_list tzresult Lwt.t =
|
2018-05-29 14:30:00 +04:00
|
|
|
Alpha_services.Constants.all cctxt
|
|
|
|
(chain, block) >>=? fun { parametric = {
|
|
|
|
hard_gas_limit_per_operation = gas_limit ;
|
|
|
|
hard_storage_limit_per_operation = storage_limit ;
|
|
|
|
} } ->
|
2018-04-30 21:06:06 +04:00
|
|
|
let may_need_patching_single
|
|
|
|
: type kind. kind contents -> kind contents option = function
|
|
|
|
| Manager_operation c
|
2018-06-17 04:01:34 +04:00
|
|
|
when c.gas_limit < Z.zero || gas_limit <= c.gas_limit
|
|
|
|
|| c.storage_limit < Z.zero || storage_limit <= c.storage_limit ->
|
2018-04-30 21:06:06 +04:00
|
|
|
let gas_limit =
|
2018-06-17 04:01:34 +04:00
|
|
|
if c.gas_limit < Z.zero || gas_limit <= c.gas_limit then
|
2018-04-30 21:06:06 +04:00
|
|
|
gas_limit
|
|
|
|
else
|
|
|
|
c.gas_limit in
|
|
|
|
let storage_limit =
|
2018-06-17 04:01:34 +04:00
|
|
|
if c.storage_limit < Z.zero || storage_limit <= c.storage_limit then
|
2018-04-30 21:06:06 +04:00
|
|
|
storage_limit
|
|
|
|
else
|
|
|
|
c.storage_limit in
|
|
|
|
Some (Manager_operation { c with gas_limit ; storage_limit })
|
|
|
|
| _ -> None in
|
|
|
|
let rec may_need_patching
|
|
|
|
: type kind. kind contents_list -> kind contents_list option =
|
|
|
|
function
|
|
|
|
| Single (Manager_operation _ as c) -> begin
|
|
|
|
match may_need_patching_single c with
|
|
|
|
| None -> None
|
|
|
|
| Some op -> Some (Single op)
|
|
|
|
end
|
|
|
|
| Single _ -> None
|
|
|
|
| Cons (Manager_operation _ as c, rest) -> begin
|
|
|
|
match may_need_patching_single c, may_need_patching rest with
|
|
|
|
| None, None -> None
|
|
|
|
| Some c, None -> Some (Cons (c, rest))
|
|
|
|
| None, Some rest -> Some (Cons (c, rest))
|
|
|
|
| Some c, Some rest -> Some (Cons (c, rest))
|
|
|
|
end in
|
|
|
|
|
|
|
|
let patch :
|
|
|
|
type kind. kind contents * kind contents_result -> kind contents tzresult Lwt.t = function
|
|
|
|
| Manager_operation c, (Manager_operation_result _ as result) ->
|
|
|
|
begin
|
2018-06-17 04:01:34 +04:00
|
|
|
if c.gas_limit < Z.zero || gas_limit <= c.gas_limit then
|
2018-04-30 21:06:06 +04:00
|
|
|
Lwt.return (estimated_gas_single result) >>=? fun gas ->
|
|
|
|
begin
|
|
|
|
if Z.equal gas Z.zero then
|
|
|
|
cctxt#message "Estimated gas: none" >>= fun () ->
|
|
|
|
return Z.zero
|
|
|
|
else
|
|
|
|
cctxt#message
|
|
|
|
"Estimated gas: %s units (will add 100 for safety)"
|
|
|
|
(Z.to_string gas) >>= fun () ->
|
|
|
|
return (Z.add gas (Z.of_int 100))
|
|
|
|
end
|
|
|
|
else return c.gas_limit
|
|
|
|
end >>=? fun gas_limit ->
|
|
|
|
begin
|
2018-06-17 04:01:34 +04:00
|
|
|
if c.storage_limit < Z.zero || storage_limit <= c.storage_limit then
|
2018-04-30 21:06:06 +04:00
|
|
|
Lwt.return (estimated_storage_single result) >>=? fun storage ->
|
|
|
|
begin
|
2018-06-13 16:41:40 +04:00
|
|
|
if Z.equal storage Z.zero then
|
2018-04-30 21:06:06 +04:00
|
|
|
cctxt#message "Estimated storage: no bytes added" >>= fun () ->
|
2018-06-13 16:41:40 +04:00
|
|
|
return Z.zero
|
2018-04-30 21:06:06 +04:00
|
|
|
else
|
|
|
|
cctxt#message
|
2018-06-13 16:41:40 +04:00
|
|
|
"Estimated storage: %s bytes added (will add 20 for safety)"
|
|
|
|
(Z.to_string storage) >>= fun () ->
|
|
|
|
return (Z.add storage (Z.of_int 20))
|
2018-04-30 21:06:06 +04:00
|
|
|
end
|
|
|
|
else return c.storage_limit
|
|
|
|
end >>=? fun storage_limit ->
|
|
|
|
return (Manager_operation { c with gas_limit ; storage_limit })
|
|
|
|
| (c, _) -> return c in
|
|
|
|
let rec patch_list :
|
|
|
|
type kind. kind contents_and_result_list -> kind contents_list tzresult Lwt.t =
|
|
|
|
function
|
|
|
|
| Single_and_result
|
|
|
|
((Manager_operation _ as op), (Manager_operation_result _ as res)) ->
|
|
|
|
patch (op, res) >>=? fun op -> return (Single op)
|
|
|
|
| Single_and_result (op, _) -> return (Single op)
|
|
|
|
| Cons_and_result ((Manager_operation _ as op),
|
|
|
|
(Manager_operation_result _ as res), rest) -> begin
|
|
|
|
patch (op, res) >>=? fun op ->
|
|
|
|
patch_list rest >>=? fun rest ->
|
|
|
|
return (Cons (op, rest))
|
|
|
|
end in
|
|
|
|
match may_need_patching contents with
|
|
|
|
| Some contents ->
|
2018-06-17 04:02:42 +04:00
|
|
|
simulate cctxt ~chain ~block ?branch contents >>=? fun (_, _, result) ->
|
2018-04-30 21:06:06 +04:00
|
|
|
let res = pack_contents_list contents result.contents in
|
|
|
|
patch_list res
|
|
|
|
| None -> return contents
|
2018-04-22 12:50:34 +04:00
|
|
|
|
|
|
|
let inject_operation
|
2018-04-30 21:06:06 +04:00
|
|
|
(type kind) cctxt ~chain ~block
|
|
|
|
?confirmations ?branch ?src_sk (contents: kind contents_list) =
|
2018-04-22 21:57:49 +04:00
|
|
|
may_patch_limits
|
2018-06-17 04:02:42 +04:00
|
|
|
cctxt ~chain ~block ?branch contents >>=? fun contents ->
|
2018-04-16 02:44:24 +04:00
|
|
|
preapply cctxt ~chain ~block
|
2018-04-22 12:50:34 +04:00
|
|
|
?branch ?src_sk contents >>=? fun (_oph, op, result) ->
|
2018-04-22 22:56:51 +04:00
|
|
|
begin match detect_script_failure result with
|
|
|
|
| Ok () -> return ()
|
|
|
|
| Error _ as res ->
|
|
|
|
cctxt#message
|
|
|
|
"@[<v 2>This simulation failed:@,%a@]"
|
2018-04-30 21:06:06 +04:00
|
|
|
Operation_result.pp_operation_result
|
|
|
|
(op.protocol_data.contents, result.contents) >>= fun () ->
|
2018-04-22 22:56:51 +04:00
|
|
|
Lwt.return res
|
|
|
|
end >>=? fun () ->
|
2018-04-30 21:06:06 +04:00
|
|
|
let bytes =
|
|
|
|
Data_encoding.Binary.to_bytes_exn
|
|
|
|
Operation.encoding (Operation.pack op) in
|
2018-04-22 16:40:44 +04:00
|
|
|
Shell_services.Injection.operation cctxt ~chain bytes >>=? fun oph ->
|
2018-04-22 12:50:34 +04:00
|
|
|
cctxt#message "Operation successfully injected in the node." >>= fun () ->
|
|
|
|
cctxt#message "Operation hash is '%a'." Operation_hash.pp oph >>= fun () ->
|
|
|
|
begin
|
|
|
|
match confirmations with
|
2018-04-22 14:53:35 +04:00
|
|
|
| None -> return result
|
2018-04-22 12:50:34 +04:00
|
|
|
| Some confirmations ->
|
|
|
|
cctxt#message "Waiting for the operation to be included..." >>= fun () ->
|
|
|
|
Client_confirmations.wait_for_operation_inclusion
|
2018-04-22 14:53:35 +04:00
|
|
|
~confirmations cctxt ~chain oph >>=? fun (h, i , j) ->
|
2018-06-11 16:25:47 +04:00
|
|
|
Alpha_block_services.Operations.operation
|
2018-04-30 21:06:06 +04:00
|
|
|
cctxt ~block:(`Hash (h, 0)) i j >>=? fun op' ->
|
2018-04-09 20:18:57 +04:00
|
|
|
match op'.receipt with
|
|
|
|
| No_operation_metadata ->
|
|
|
|
failwith "Internal error: unexpected receipt."
|
|
|
|
| Operation_metadata receipt ->
|
|
|
|
match Apply_operation_result.kind_equal_list contents receipt.contents
|
|
|
|
with
|
|
|
|
| Some Apply_operation_result.Eq ->
|
|
|
|
return (receipt : kind operation_metadata)
|
|
|
|
| None -> failwith "Internal error: unexpected receipt."
|
2018-04-22 14:53:35 +04:00
|
|
|
end >>=? fun result ->
|
2018-04-22 12:50:34 +04:00
|
|
|
cctxt#message
|
|
|
|
"@[<v 2>This sequence of operations was run:@,%a@]"
|
2018-04-30 21:06:06 +04:00
|
|
|
Operation_result.pp_operation_result
|
|
|
|
(op.protocol_data.contents, result.contents) >>= fun () ->
|
|
|
|
Lwt.return (originated_contracts result.contents) >>=? fun contracts ->
|
2018-04-22 12:50:34 +04:00
|
|
|
Lwt_list.iter_s
|
|
|
|
(fun c ->
|
|
|
|
cctxt#message
|
|
|
|
"New contract %a originated."
|
|
|
|
Contract.pp c)
|
|
|
|
contracts >>= fun () ->
|
2018-04-30 21:06:06 +04:00
|
|
|
return (oph, op.protocol_data.contents, result.contents)
|
|
|
|
|
|
|
|
let inject_manager_operation
|
|
|
|
cctxt ~chain ~block ?branch ?confirmations
|
2018-06-13 16:41:40 +04:00
|
|
|
~source ~src_pk ~src_sk ~fee ?(gas_limit = Z.minus_one) ?(storage_limit = (Z.of_int (-1)))
|
2018-04-30 21:06:06 +04:00
|
|
|
(type kind) (operation : kind manager_operation)
|
|
|
|
: (Operation_hash.t * kind Kind.manager contents * kind Kind.manager contents_result) tzresult Lwt.t =
|
|
|
|
Alpha_services.Contract.counter
|
|
|
|
cctxt (chain, block) source >>=? fun pcounter ->
|
2018-06-13 12:31:27 +04:00
|
|
|
let counter = Z.succ pcounter in
|
2018-04-30 21:06:06 +04:00
|
|
|
Alpha_services.Contract.manager_key
|
|
|
|
cctxt (chain, block) source >>=? fun (_, key) ->
|
|
|
|
let is_reveal : type kind. kind manager_operation -> bool = function
|
|
|
|
| Reveal _ -> true
|
|
|
|
| _ -> false in
|
|
|
|
match key with
|
|
|
|
| None when not (is_reveal operation) -> begin
|
|
|
|
let contents =
|
|
|
|
Cons
|
|
|
|
(Manager_operation { source ; fee = Tez.zero ; counter ;
|
2018-06-13 16:41:40 +04:00
|
|
|
gas_limit = Z.zero ; storage_limit = Z.zero ;
|
2018-04-30 21:06:06 +04:00
|
|
|
operation = Reveal src_pk },
|
2018-06-13 12:31:27 +04:00
|
|
|
Single (Manager_operation { source ; fee ; counter = Z.succ counter ;
|
2018-04-30 21:06:06 +04:00
|
|
|
gas_limit ; storage_limit ; operation })) in
|
|
|
|
inject_operation cctxt ~chain ~block ?confirmations
|
|
|
|
?branch ~src_sk contents >>=? fun (oph, op, result) ->
|
|
|
|
match pack_contents_list op result with
|
|
|
|
| Cons_and_result (_, _, Single_and_result (op, result)) ->
|
|
|
|
return (oph, op, result)
|
|
|
|
| Single_and_result (Manager_operation _, _) -> .
|
|
|
|
| _ -> assert false (* Grrr... *)
|
|
|
|
end
|
|
|
|
| _ ->
|
|
|
|
let contents =
|
|
|
|
Single (Manager_operation { source ; fee ; counter ;
|
|
|
|
gas_limit ; storage_limit ; operation }) in
|
|
|
|
inject_operation cctxt ~chain ~block ?confirmations
|
|
|
|
?branch ~src_sk contents >>=? fun (oph, op, result) ->
|
|
|
|
match pack_contents_list op result with
|
|
|
|
| Single_and_result (Manager_operation _ as op, result) ->
|
|
|
|
return (oph, op, result)
|
|
|
|
| _ -> assert false (* Grrr... *)
|