How to remove a node from a multichain

+2 votes
I have about 40 node connected, I want to block 1 node. Or block that mine 
node
, what do I do, thank you

 

 
asked Aug 11, 2017 by tyemday
edited Aug 11, 2017 by tyemday

1 Answer

+1 vote
You can revoke mining and or connect permissions with revoke command.
answered Aug 11, 2017 by MaSsv
I used revoke <address> mine . But that address continues to mining . i use revoke  from node admin
Do you have more than one admin node perhaps? Depending on consensus you might have to revoke permissions using multiple admin nodes to remove permissions from the given node.
hello RobertJ , i have 3 admin node  , i was revoke that address from 2 admin node , but cannot
what are your consensus params ?
mining-diversity = 0.3                  # Miners must wait <mining-diversity>*<active miners> between blocks. (0 - 1)
admin-consensus-admin = 0.5             # <admin-consensus-admin>*<active admins> needed to change admin perms. (0 - 1)
admin-consensus-activate = 0.5          # <admin-consensus-activate>*<active admins> to change activate perms. (0 - 1)
admin-consensus-mine = 0.5              # <admin-consensus-mine>*<active admins> to change mining permissions. (0 - 1)
admin-consensus-create = 0.0            # <admin-consensus-issue>*<active admins> to change create permissions. (0 - 1)
admin-consensus-issue = 0.0             # <admin-consensus-issue>*<active admins> to change issue permissions. (0 - 1)
thanks
You need to revoke with two admins based on these consensus parameters. You can use listpermissions with verbose=true to see pending permission changes.
...