Skip to content

Commit

Permalink
add DOGE as well
Browse files Browse the repository at this point in the history
  • Loading branch information
ranlavanet committed Feb 12, 2025
1 parent 2752649 commit 1855bef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion protocol/chainlib/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ func constructFiberCallbackWithHeaderAndParameterExtractionAndReferer(callbackTo

func checkBTCResponseAndFixReply(chainID string, replyData []byte) string {
response := string(replyData)
if chainID == "BTC" || chainID == "BTCT" || chainID == "LTC" || chainID == "LTCT" {
if chainID == "BTC" || chainID == "BTCT" || chainID == "LTC" || chainID == "LTCT" || chainID == "DOGE" || chainID == "DOGET" {
var jsonMsg *rpcclient.JsonrpcMessage
if err := json.Unmarshal(replyData, &jsonMsg); err == nil {
btcResponse := &rpcclient.BTCResponse{
Expand Down

0 comments on commit 1855bef

Please sign in to comment.