Unable to sendrawtransaction after signrawtransaction

+1 vote
I m signing a raw transaction and getting object like this:

{

"hex":"some string",

"complete":true

}

then I m sending this using--- sendrawtransaction "hex"

I m getting error every time:

error code: -26
error message:
64: One of the outputs doesn't have receive permission

 

Can you tell me what am I doing wrong??
asked Aug 8, 2016 by John Doe

1 Answer

0 votes

It is just what it says - MultiChain blockchains are permissioned, so a transaction can't use an address in an output unless that address has been given receive permissions using the appropriate grant command by an administrator (or if anyone-can-receive is true in the blockchain parameters)

answered Aug 8, 2016 by MultiChain
...