Skip to content

Commit

Permalink
Fix CoinType (#3402)
Browse files Browse the repository at this point in the history
  • Loading branch information
JaimeToca authored Aug 30, 2023
1 parent af05a96 commit 3694d7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Cosmos/Signer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Proto::SigningOutput Signer::sign(const Proto::SigningInput& input, TWCoinType c

std::string Signer::signaturePreimage(const Proto::SigningInput& input, const Data& publicKey, TWCoinType coin) const {
auto isEvmCosmosChain = [coin]() {
return coin == TWCoinTypeNativeInjective || coin == TWCoinTypeEvmos || coin == TWCoinTypeNativeCanto;
return coin == TWCoinTypeNativeInjective || coin == TWCoinTypeNativeEvmos || coin == TWCoinTypeNativeCanto;
};
switch (input.signing_mode()) {
case Proto::JSON:
Expand Down

0 comments on commit 3694d7f

Please sign in to comment.