Skip to content

Commit

Permalink
fix: wrong decimal for evm (#3683)
Browse files Browse the repository at this point in the history
  • Loading branch information
TranTrungTien authored Aug 27, 2024
1 parent 5732ebe commit 5581779
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export class EvmInternalTransactionsComponent implements OnInit {
displayedColumnsTx: string[] = this.templatesTx.map((dta) => dta.matColumnDef);
dataSourceTx: MatTableDataSource<any> = new MatTableDataSource();
denom = this.environmentService.chainInfo.currencies[0].coinDenom;
decimal = this.environmentService.chainInfo.currencies[0].coinDecimals;
decimal = 18;
breakpoint$ = this.layout.observe([Breakpoints.Small, Breakpoints.XSmall]);

constructor(
Expand Down

0 comments on commit 5581779

Please sign in to comment.