From 99c0c700c0dccb3f5a7d729ddf03b24e798f7247 Mon Sep 17 00:00:00 2001 From: AlexCato Date: Fri, 12 Jul 2019 12:29:16 +0000 Subject: [PATCH 1/2] (doc) Update tx_broadcast explanation Currently, only 'self' works until the other options for tx_broadcast are implemented. Update the docs accordingly, because there was someone wondering on IRC today why his transaction failed to broadcast; the reason was he changed this setting, which currently only works for 'self'. If the other options are implemented (tagging #368 ), this documentation should be changed along with it. --- jmclient/jmclient/configure.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jmclient/jmclient/configure.py b/jmclient/jmclient/configure.py index 1398cbb..164cfc7 100644 --- a/jmclient/jmclient/configure.py +++ b/jmclient/jmclient/configure.py @@ -241,8 +241,8 @@ absurd_fee_per_kb = 350000 # spends from unconfirmed inputs, which may then get malleated or double-spent! # other counterparties are likely to reject unconfirmed inputs... don't do it. -#options: self, random-peer, not-self (note: random-maker is not currently supported). -# self = broadcast transaction with your own ip +# options: self, random-peer, not-self (note: currently, ONLY 'self' works). +# self = broadcast transaction with your bitcoin core's ip # random-peer = everyone who took part in the coinjoin has a chance of broadcasting # not-self = never broadcast with your own ip tx_broadcast = self From a7cc1e86b18ea10a89587214327a1bafd5a8aebe Mon Sep 17 00:00:00 2001 From: AlexCato Date: Fri, 12 Jul 2019 12:53:32 +0000 Subject: [PATCH 2/2] Change 'bitcoin core' to 'bitcoin node' Compatible bitcoin node implementations might be used as well, so it's not necessarily bitcoin core. --- jmclient/jmclient/configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jmclient/jmclient/configure.py b/jmclient/jmclient/configure.py index 164cfc7..5c98933 100644 --- a/jmclient/jmclient/configure.py +++ b/jmclient/jmclient/configure.py @@ -242,7 +242,7 @@ absurd_fee_per_kb = 350000 # other counterparties are likely to reject unconfirmed inputs... don't do it. # options: self, random-peer, not-self (note: currently, ONLY 'self' works). -# self = broadcast transaction with your bitcoin core's ip +# self = broadcast transaction with your bitcoin node's ip # random-peer = everyone who took part in the coinjoin has a chance of broadcasting # not-self = never broadcast with your own ip tx_broadcast = self