Skip to content

Commit

Permalink
[#406] add operation to roster
Browse files Browse the repository at this point in the history
  • Loading branch information
relativityboy committed Sep 26, 2018
1 parent c204775 commit 9a56667
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/broadcast/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ operations.forEach((operation) => {

const useCommentPermlink =
operationParams.indexOf('parent_permlink') !== -1 &&
operationParams.indexOf('parent_permlink') !== -1;
operationParams.indexOf('parent_permlink') !== -1; //todo: figure out why and kill it if possible

steemBroadcast[`${operationName}With`] =
function steemBroadcast$specializedSendWith(wif, options, callback) {
Expand Down
9 changes: 9 additions & 0 deletions src/broadcast/operations.js
Original file line number Diff line number Diff line change
Expand Up @@ -498,5 +498,14 @@ module.exports = [
"request_id",
"memo"
]
},
{
"roles": ["owner"],
"operation": "witness_set_properties",
"params": [
"owner",
"props",
"extensions",
]
}
];

0 comments on commit 9a56667

Please sign in to comment.