Error when trying to send a multisig edit transactio

Maybe somebody can help me…

I get the “FAILURE_SIGNATURE_NOT_VERIFIABLE” error when trying to send a multisig edit transaction - most of the times, but then suddenly the transaction gets accepted if i try several times.

What could be the reason for this?

best,
Aenima

I am not sure, maybe the developer can answer that @Quantum_Mechanics

I get the error if I call “keyPair2.publicKey.toString();” two or more times… dosent really make sense to me.

e.g:

// Create key 1
rBytes1 = nem.crypto.nacl.randomBytes(32);
privateKey1 = nem.utils.convert.ua2hex(rBytes1);
keyPair1 = nem.crypto.keyPair.create(privateKey1);
pub1 = keyPair1.publicKey.toString();
console.log(keyPair1.publicKey);

// Create key 2
rBytes2 = nem.crypto.nacl.randomBytes(32);
privateKey2 = nem.utils.convert.ua2hex(rBytes2);
keyPair2 = nem.crypto.keyPair.create(privateKey2);
pub2 = keyPair2.publicKey.toString();

It is a very interesting phenomenon.
Will the situation change even if I change the reference node?

thanks

Yes the error is occurring when im connected to both…‘http://23.228.67.85’; or ‘http://104.128.226.60’; (testnet).

Is there any other method for extracting the publickey I could use?

I do not use English, so I do not know if the meaning matches. please note that.
A public key is reflected when you create a new account and do remittance processing (it is not good at receiving).

I need three new public keys for making a 2-3 multisign contract. It seems that by generating new keys only a some are acceptable. Its really strange.

I can run the same script 10 time (generating 3x10 public keys) and only ~1 time i will get at succ.

One day of bug-finding. Seem like the problem was the multisig edit transaction. The cosigner public keys need to be sorted, in order for the transaction to be confirmed. :slight_smile:
I didnt finde this documented in anyway.

The cosigner public keys need to be sorted, in order for the transaction to be confirmed.

Thanks for this! I was stuck for 2 days trying to fix this problem. :sweat_smile:

1 Like