dashed-slug.net › Forums › Full Node Multi Coin Adapter extension support › Export from Adapter does not display the latest user deposits. › Reply To: Export from Adapter does not display the latest user deposits.
Hello,
Oops I think I know why this happens, and it’s a mistake on my part.
The code that does the export is this: https://github.com/dashed-slug/wallets/blob/4.4.8/includes/adapters-list.php#L29-L78
A file handle is opened here: https://github.com/dashed-slug/wallets/blob/4.4.8/includes/adapters-list.php#L38
And the data is written out to the file handle here: https://github.com/dashed-slug/wallets/blob/4.4.8/includes/adapters-list.php#L76
But I never called fclose().
My apologies for this, I feel like this is such a rookie mistake! I will of course fix it on the next release.
In the meantime, you can go to wp-content/plugins/wallets/adapters-list.php
and add it between lines 77 and 78:
fputcsv( $fh, $row, ',' );
}
fclose( $fh ); // this line was missing!
}
This must be it. The fix will go into the upcoming wallets release. Please let me know if you can’t edit the file or if you continue to face this issue for any reason.
with regards