Skip to content
Snippets Groups Projects
Commit a90bfa5c authored by Howo's avatar Howo
Browse files

Support end_date for the update proposal operation changes in hf25 (see...

Support end_date for the update proposal operation changes in  hf25 (see hive!165)
parent d4f3c6fa
No related branches found
No related tags found
1 merge request!25Support end_date for the update proposal operation changes in hf25
// This file is merge updated from steemd's js_operation_serializer program.
// This file is merge updated from hived's js_operation_serializer program.
/*
./js_operation_serializer |
......@@ -128,6 +127,11 @@ const smt_param_allow_downvotes = new Serializer(3, {
value: bool
});
var update_proposal_end_date = new Serializer(0, {
end_date: time_point_sec
});
// Custom-types after Generated code
// ## Generated code follows
......@@ -717,7 +721,7 @@ let update_proposal = new Serializer(
daily_pay: asset,
subject: string,
permlink: string,
extensions: set(future_extensions)
extensions: set(static_variant([update_proposal_end_date]))
}
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment