Skip to content

Commit 9a56667

Browse files
committed
[#406] add operation to roster
1 parent c204775 commit 9a56667

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

src/broadcast/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ operations.forEach((operation) => {
7777

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

8282
steemBroadcast[`${operationName}With`] =
8383
function steemBroadcast$specializedSendWith(wif, options, callback) {

src/broadcast/operations.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -498,5 +498,14 @@ module.exports = [
498498
"request_id",
499499
"memo"
500500
]
501+
},
502+
{
503+
"roles": ["owner"],
504+
"operation": "witness_set_properties",
505+
"params": [
506+
"owner",
507+
"props",
508+
"extensions",
509+
]
501510
}
502511
];

0 commit comments

Comments
 (0)