Skip to content

Commit 2d840ac

Browse files
authored
Merge pull request #1445 from Concordium/token-id-should-be-normalized
Token id should be normalized (COR-1670)
2 parents 1dd69e5 + d6e3898 commit 2d840ac

File tree

1 file changed

+1
-1
lines changed
  • concordium-consensus/src/Concordium/Scheduler/ProtocolLevelTokens

1 file changed

+1
-1
lines changed

concordium-consensus/src/Concordium/Scheduler/ProtocolLevelTokens/Queries.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ queryTokenInfo tokenId bs = case sSupportsPLT (accountVersion @(AccountVersionFo
129129
tsTotalSupply = toTokenAmount _pltDecimals totalSupply,
130130
tsModuleState = tms
131131
}
132-
return $ Right TokenInfo{tiTokenId = tokenId, tiTokenState = ts}
132+
return $ Right TokenInfo{tiTokenId = _pltTokenId, tiTokenState = ts}
133133

134134
-- | Get the list of 'Token's on an account.
135135
queryAccountTokens :: forall m. (PVSupportsPLT (MPV m), BS.BlockStateQuery m) => IndexedAccount m -> BlockState m -> m [Token]

0 commit comments

Comments
 (0)