Skip to content

Commit

Permalink
add LTC to dpow_015_coins list
Browse files Browse the repository at this point in the history
as iguana should interact with new LTC daemon v0.21.x using
getaddressinfo and signrawtransactionwithwallet .
  • Loading branch information
DeckerSU committed Nov 13, 2024
1 parent fd54154 commit 40480d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iguana/dpow/dpow_rpc.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ int32_t dpow_is015(char *symbol)
// for dpow_is015 enabled coins validateaddress call will be auto-changed on getaddressinfo, if initial validateaddress
// call will return an error, also signrawtransaction will be replaced with signrawtransactionwithwallet, also, it seems
// GAME, EMC2 and AYA shouldn't be there, bcz they don't have getaddressinfo and signrawtransactionwithwallet .
const char *dpow_015_coins[] = {"CHIPS", "AYA"};
const char *dpow_015_coins[] = {"CHIPS", "AYA", "LTC"};
for (size_t i = 0; i < sizeof(dpow_015_coins) / sizeof(dpow_015_coins[0]); i++)
{
if (0 == strcmp(dpow_015_coins[i],symbol)) return 1;
Expand Down

0 comments on commit 40480d0

Please sign in to comment.