Search the Community
Showing results for tags 'invalidtransaction'.
Found 2 results
Minimum search term is 4 characters long. Can't find what you want? Click here for the custom google search instead.
-
I am trying to use Ripple multi-sig. I have followed docs https://xrpl.org/set-up-multi-signing.html, https://xrpl.org/send-a-multi-signed-transaction.html. I have used ripple testnet for all these tests. I am able to perform tasks like: Create accounts and add them as signers to one account Disable master key of the account in which I added. Finally when I try to withdraw funds from this account using signatures from these signers, I get error "error": "internal", "error_code": 71, "error_message": "Invalid signature.", The json which I tried to submit is provided. I have also tried to submit as blob using submit command which creates error "error": "invalidTransaction", "error_exception": "fails local checks: Transaction has bad signature.", { "method": "submit_multisigned", "params": [ { "tx_json": { "TransactionType" : "Payment", "Account" : "rNvoW4LG6wXVZm6RXbo7qyNRmQj4TNUmTz", "Destination" : "rsuUjfWxrACCAwGQDsNeZUhpzXf1n1NK5Z","DestinationTag": 384725397, "Amount": "1000000", "Fee": "1200", "Flags": 2147483648, "Sequence": 5,"SigningPubKey": "","Signers" : [ { "Signer" : { "Account" : "rGtMsMktyGKC8QeTb6phSSYLG7JWaB1Dir", "SigningPubKey" : "020d4888ba4f8cbb96fa5a2eead2e6bbc90ba94cadae29a4aebe2a7cc62c96b278", "TxnSignature" : "3045022100AC5BBDAAB33F50CEA6DB89DFC65CCDF306B346B3A5975AF8344260548870F3B9022079EEF9C2BFDD0930C6FC72D88DD48D80D97531F9A8349C5B6372E979D76FF603" } }, { "Signer" : { "Account" : "rhNfCZXnqoX35ndyhYgHxhjPy2xs5rg9Lq", "SigningPubKey" : "02b0f22c98a07257f0251d678a23be8e00b238180dde29a71fc3fabfe17740a5cc", "TxnSignature" : "3045022100F1651743DE011E213623C8DB46D35ED89088D0563CE7C399A45AD4BDB349B63002207255ADA9385538C3589D79DF814F9D93836908A09C02E73CDE5303E865963211" } } ]} } ] }
- 7 replies
-
- multisign
- multi-sign
-
(and 2 more)
Tagged with:
-
I am trying to create a payment channel but getting invalidTransaction error after submitting the signed transaction. I am able to sign the payload but after submitting it, getting invalidTransaction error: Below is my request and response: { "Account":"r9MWBqXp9BBbLSsJcFUa5cdYrLxpGsEXSf", "TransactionType":"PaymentChannelCreate", "Amount":"100", "Destination":"r9mBvtCB99iKWhxHpyWgWc5nGvcTjdXgk7", "SettleDe lay":8640, "PublicKey":"ED5D5B6FCD85213785D6BAFB791662B978587F94833E4EBB4EC663BD9FDC15A79C", "DestinationTag":20170428 } Response: <rejected> [RippledError(invalidTransaction)], domain: Domain { domain: null, _events: { error: [Function: debugDomainError] }, _eventsCount: 1, _maxListeners: undefined, members: [] } } Any help is highly appreciated .