near: remove wormhole from token name (#1492)

This commit is contained in:
jumpsiegel 2022-08-31 11:44:07 -05:00 committed by GitHub
parent e4cbb67dc0
commit 6bbbd29059
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -554,7 +554,7 @@ impl TokenBridge {
let symbol = data.get_bytes32(35).to_vec();
let name = data.get_bytes32(67).to_vec();
let wname = get_string_from_32(&name) + " (Wormhole)";
let wname = get_string_from_32(&name);
// Decimals are capped at 8 in wormhole
if decimals > 8 {