cardano-foundation / cardano-rosetta

An implementation of Rosetta for Cardano
https://www.rosetta-api.org
Apache License 2.0
98 stars 50 forks source link

Error while broadcasting transaction #561

Closed dev-dantealighieri closed 3 months ago

dev-dantealighieri commented 3 months ago

Ask a question

I get the following error when i submit transaction, i have no idea why is this happening, what might be the reason?

'Error: Command failed: transaction submit Error: Error while submitting tx: ShelleyTxValidationError ShelleyBasedEraBabbage (ApplyTxError [UtxowFailure (AlonzoInBabbageUtxowPredFailure (ShelleyInAlonzoUtxowPredFailure (MissingVKeyWitnessesUTXOW (fromList [KeyHash "663ed2404fd357ded31b370237e37a6950bb7c9132977dbccedee908"])))),UtxowFailure (UtxoFailure (AlonzoInBabbageUtxoPredFailure (ValueNotConservedUTxO (MaryValue (Coin 46631389) (MultiAsset (fromList []))) (MaryValue (Coin 10000000) (MultiAsset (fromList []))))))])'

Kammerlo commented 3 months ago

Hi, it seems that a witness is missing in your transaction. Are you signing them with all needed keys? What Library are you using for building/signing the transaction?

HeinrichApfelmus commented 3 months ago

The error message indicates that the transaction that you have submitted is incomplete:

dev-dantealighieri commented 3 months ago

thanks!