Skip to content

Commit

Permalink
Added missing jungle auto-links
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthieu Vachon committed Mar 7, 2019
1 parent b27a51d commit 76a5083
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions eosc/cmd/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,10 @@ func transactionURL(chainID eos.SHA256Bytes, trxID string) string {
return fmt.Sprintf("https://eosq.app/tx/%s", trxID)
case "5fff1dae8dc8e2fc4d5b23b2c7665c97f9e9d8edf2b6485a86ba311c25639191":
return fmt.Sprintf("https://kylin.eosq.app/tx/%s", trxID)
case "e70aaab8997e1dfce58fbfac80cbbb8fecec7b99cf982a9444273cbc64c41473":
return fmt.Sprintf("https://jungle.eosq.app/tx/%s", trxID)
}

return trxID
}

Expand All @@ -265,7 +268,10 @@ func blockURL(chainID eos.SHA256Bytes, blockID string) string {
return fmt.Sprintf("https://eosq.app/block/%s", blockID)
case "5fff1dae8dc8e2fc4d5b23b2c7665c97f9e9d8edf2b6485a86ba311c25639191":
return fmt.Sprintf("https://kylin.eosq.app/block/%s", blockID)
case "e70aaab8997e1dfce58fbfac80cbbb8fecec7b99cf982a9444273cbc64c41473":
return fmt.Sprintf("https://jungle.eosq.app/block/%s", blockID)
}

return blockID
}

Expand Down

0 comments on commit 76a5083

Please sign in to comment.