You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/utility/generate_assetlist_functions.mjs
+46-20Lines changed: 46 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -355,11 +355,33 @@ export async function setLocalAsset(asset_data) {
355
355
return;
356
356
}
357
357
358
-
// Only add trace if it was successfully retrieved
358
+
// Add trace if it was successfully retrieved, or create minimal trace from fallback
359
359
if(trace?.chain?.path){
360
360
traces.push(trace);
361
361
}else{
362
362
console.log(`Warning: Using path from zone_asset for ${asset_data.zone_asset.chain_name}:${asset_data.zone_asset.base_denom} (IBC connection not found in registry)`);
363
+
364
+
// Create minimal trace from zone_asset to prevent downstream errors
0 commit comments