My colleague under Windows cannot broadcast transaction to
‘https://pool.testnet.wavesnodes.com/’
with the following error
message: “request to https://pool.testnet.wavesnodes.com/transactions/broadcast failed, reason: write EPROTO 101057795:error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure:openssl\ssl\s23_clnt.c:802:↵”
using the following code
const tx = transactions.transfer( {
recipient: recipientAddress,// some address
amount: 1000000
}, seedMain);// seedMain account with Waves a lot
const transactions = require(‘@waves/waves-transactions’);
transactions.broadcast(tx, ‘https://pool.testnet.wavesnodes.com/’);
We also tried to extract ‘broadcast’ code and fetch instead of axios.post but without success.
Could someone explain what happens?
How we can fix it?