mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-11-26 10:46:23 -05:00
cli: log the reason we can't find tx_cancel (#289)
* cli: log the reason we can't find tx_cancel When we can't find tx_cancel even though the cancel timelock expired, we publish it ourselves. However, some users had a problem where the tx_cancel wasn't found even though it was already published. This leads to the cli getting stuck in `CancelTimelockExpired` when it should go to `BtcCancelled`. This commit introduces an additional log statement that will help us narrow down why that is. * gui: update the documentation icon
This commit is contained in:
parent
b9609b979b
commit
24cfa71932
2 changed files with 7 additions and 3 deletions
|
|
@ -7,7 +7,7 @@ import UnfinishedSwapsAlert from "../alert/UnfinishedSwapsAlert";
|
|||
import LinkIconButton from "../icons/LinkIconButton";
|
||||
import BackgroundRefundAlert from "../alert/BackgroundRefundAlert";
|
||||
import MatrixIcon from "../icons/MatrixIcon";
|
||||
import { BookRounded } from "@material-ui/icons";
|
||||
import { BookRounded, MenuBook } from "@material-ui/icons";
|
||||
|
||||
const useStyles = makeStyles((theme) => ({
|
||||
outer: {
|
||||
|
|
@ -50,7 +50,7 @@ export default function NavigationFooter() {
|
|||
<Tooltip title="Read our official documentation">
|
||||
<span>
|
||||
<LinkIconButton url="https://docs.unstoppableswap.net">
|
||||
<BookRounded />
|
||||
<MenuBook />
|
||||
</LinkIconButton>
|
||||
</span>
|
||||
</Tooltip>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue