09:26:26 I don't think coinbase txes are treated differently. 09:26:51 See the top of core_rpc_server.cpp, you've got a fnuction that pastes bits from an RPC response. 09:27:07 If your node is pruned, you won't have that data for most txes btw. 09:27:22 * moneromoooo goes look 09:30:14 It's get_pruned_tx, and it's in wallet2.cpp acyually. 09:30:33 You want something similar, that pastes pruned/unpruned if needed, if you don'thave the full data. 09:30:52 But IIRC I think if you ask for full, you get full or nothing anyway. 14:43:32 Hello, I'm trying to sync a monero node and got stuck. The banned list is huge, no idea why. Is there a way to unban the entire list instead of going manually through each address? 15:10:37 rub1ck[m]: sounds like a corrupted database 15:10:56 your node can't verify blocks anymore and it starts banning legit nodes since it thinks they are sending wrong data 16:20:40 How can I solve this? 16:40:08 Restart monerod. 16:40:34 If it's the DB that's shot, then you'll have to stop, delete db, restart. Try just restart for now. 16:41:15 And start with --log-level 1, to get more info on what's causing it to kick peers. And post in #monero next. 17:04:31 Tried to use sweep_single RPC call to wallet-cli-rpc and received error 37 (not enough funds). However I know the key image I specified to sweep is unlocked as is >1 xmr so paying the fee should be no issue. Any quick ideas? Thanks 17:04:43 *and is 17:13:26 If logs don't tell you why, add traces all over create_transactions_2 and try again. 17:45:02 Managed to fix the issue by ignoring the error and trying agai, after ~5-10 fails it starts working 17:45:45 Again