Closed MonsieurNicolas closed 3 months ago
Is this still a problem? I'm not really sure how to reproduce this, I'm not very familiar with the XDR types.
Looks like it's fixed, closing
I can't see LedgerEntryChanges
in the list.
@bartekn
Mmmm, I think it was fixed. I didn't take a screenshot of the good behavior at the time.
it's still defined in the xdr, this didn't change:
typedef LedgerEntryChange LedgerEntryChanges<>;
Hi, As of stellar-sdk 6.2.0, latest via npm, this still throws an exception.
const meta = stellar-sdk.xdr.TransactionMeta.fromXDR(fee_meta_xdr, "base64"); Error: XDR Read Error: Unknown LedgerEntryChangeType member for value 33078660
Lou
This is closed as in v2 we are using XDR to JSON
fee_meta_xdr
doesn't have any type associated with it in the transactions endpoint: it should beLedgerEntryChanges
, current workaround is to copy paste its value into the XDR decoder and useOperationMeta
that happens to be the same type (on the wire).