I have a Multisign Account with a minimum of 2 cosigners. When i create the transferTransaction with the first cosigner i use the javascript sdk to send the Transaction.
nem.model.transactions.send(common, transactionEntity, endpoint)
Then i get the json result with 2 hashes. The innerTransaction hash is the innerTransaction Hash it is shown in the Blockchain Explorer.
{"innerTransactionHash": "data":"ac668f7396461ab23825e0f4eba755adc5543867e17f738b2d8efafe04943e85"},"code":1,"type":1,"message":"SUCCESS","transactionHash":{"data":"6132135430f25bf329bac302edeace617fa24d6a23f58cea3047bd07deca247c"}}
Thats all good. When i signatureTransaction with my second cosigner i get the following result.
{"innerTransactionHash":{},"code":1,"type":1,"message":"SUCCESS","transactionHash":{"data":"1699617e92799b4e0686a04ead61e0d19cc962b28422763b218bd10e8a8bd305"}}
There is no innerTransaction Hash given, so how can i get the Multisig Hash from the finally Transaction which is shown in the Blockchain Explorer?
The Hash i get from the first cosigner Transaction, but at the second cosigner i dont receive the Multisig Hash, how can i get this hash?
Kindly Daniel