Skip to content
Snippets Groups Projects
Commit 867abfeb authored by Mahdi Yari's avatar Mahdi Yari
Browse files

Merge branch 'update-proposal-end-date-support' into 'master'

Support end_date for the update proposal operation changes in  hf25

See merge request !25
parents d4f3c6fa 1330a2bd
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(1, {
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([future_extensions, 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