Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ impl CoinInfoResource {
}

pub fn get_symbol_trunc(&self) -> String {
truncate_str(&self.symbol, 10)
truncate_str(&self.symbol, 32)
}

/// Getting the table item location of the supply aggregator
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use field_count::FieldCount;
use serde::{Deserialize, Serialize};

const FUNGIBLE_ASSET_LENGTH: usize = 32;
const FUNGIBLE_ASSET_SYMBOL: usize = 10;
const FUNGIBLE_ASSET_SYMBOL: usize = 32;

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct FeeStatement {
Expand Down