I have a small seed for testing using the Python API, linking to a local CarrIOTA node. The seed has only one used address.
If I run get_account_data(), the balance shows as 0 since I haven't reattached any transactions yet.
With get_inputs(start=0, stop=1,threshold=0), I can see the Address and totalBalance that I want to reattach, but how can I find the transaction info so I can use attach_to_tangle?
get_balances(address) gives me the address, balance, a reference (which seems to be the same for all addresses), the current milestoneIndex, and 'milestone'=None. and find_transactions(address) returns an empty hash.
The transaction confirmed and was available well before the snapshot.
– topological-donut Jan 30 '18 at 21:04https://github.com/iotaledger/wallet/blob/4a50e49c15c76ec57793614eafaa2edf54352927/ui/js/ui.addresses.js#L77
It seems that the wallet sends a 0 value transaction to itself and then shows "attaching to tangle". I wander whether this would work, but I would rather not lose the balance completely
– topological-donut Jan 30 '18 at 21:17