Addresses in the Network

+2 votes
Is it possible for the addresses in the network (on Node1, Node2 ...NodeN) to be independent for transaction even if specific Node(from which it is created) staying online or offline for the execution of transaction?

And How to know who exactly mined the block?
asked Apr 16, 2018 by Pavan123

1 Answer

0 votes
 
Best answer

If you want to create transactions on behalf of an address, while the node that created that address is not currently online, you would first use dumpprivkey and importprivkey to copy that address's private key to another node. But be aware that this means the other node can create transactions for that address at any time.

The miner of each block (in a blockchain with permissioned mining) can be seen using the getblock or listblocks APIs.

answered Apr 17, 2018 by MultiChain
selected Apr 24, 2018 by Pavan123
...