A single admin cannot grant mine permission with admin-consensus-mine=0.5

+1 vote
Greetings,

I have initialised the chain with admin-consensus-mine=0.5 and created one additional node without admin, activate or mine permission. That means that I have a single admin. I tried to grant mine to the second node, but it puts it only into the pending permission, although the one and only admin tried to grant the permission:

zolichain1: listpermissions mine * true

{"method":"listpermissions","params":["mine","*",true],"id":1,"chain_name":"zolichain1"}

 

[

    {

        "address" : "1QhdwmVrxCRnS7r6vFuvLSiKQ53FqQ5MvEqk93",

        "type" : "mine",

        "startblock" : 0,

        "endblock" : 0,

        "admins" : [

        ],

        "pending" : [

            {

                "startblock" : 0,

                "endblock" : 4294967295,

                "admins" : [

                    "1TFvWaHMkbBUnfGyXJZgtxCmMHmqMytiPz24Lm"

                ],

                "required" : 1

            }

        ]

    },

    {

        "address" : "1TFvWaHMkbBUnfGyXJZgtxCmMHmqMytiPz24Lm",

        "type" : "mine",

        "startblock" : 0,

        "endblock" : 4294967295,

        "admins" : [

            "1TFvWaHMkbBUnfGyXJZgtxCmMHmqMytiPz24Lm"

        ],

        "pending" : [

        ]

    }

]

Why isn't it granted? The required is set to 1 and 1 admin requested it.

 

Many thanks in advance,

 

Zoltan
asked Mar 11, 2016 by Zoltan

2 Answers

0 votes
Thanks for reporting this. It looks like a straightforward bug in alpha 17, and I expect it was introduced in that version because we made significant changes to how mining permissions work. We'll fix this in the next alpha, but in the meantime if this is a show-stopper for you, please consider using alpha 16. Thanks again.
answered Mar 11, 2016 by MultiChain
Just to follow up on the above, we've identified this bug and fixed it internally. A new alpha will be released as soon as possible with this fix.
0 votes

Version 1.0 alpha 18, just released, fixes this problem. Thanks again for reporting it.

answered Mar 13, 2016 by MultiChain
...