Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rohan-agarwal-coinbase committed Nov 21, 2024
1 parent a42eb0d commit da318c6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/coinbase/asset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,12 @@ export class Asset {
throw new ArgumentError(`Invalid asset ID: ${assetId}`);
}
}
return new Asset(model.network_id, assetId ?? model.asset_id, model.contract_address!, decimals);
return new Asset(
model.network_id,
assetId ?? model.asset_id,
model.contract_address!,
decimals,
);
}

/**
Expand Down

0 comments on commit da318c6

Please sign in to comment.