Show Posts
|
Pages: [1]
|
Hi,
I am trying to add a withdrawal address from Kraken and getting this message:
"The withdrawal address needs to be confirmed. An email with approval instructions has been sent to you. The link in the email expires in one hour."
No email, tried few time, delete and add, nothing, for several coins. Opened a ticket, and I got the mail that confirm the ticket opening after few seconds, so the problem is only with the address activation emails. I am with simple gmail account.
Update - after a lot of tries and almost one hour, all the emails suddenly came at once.
Ady.
|
|
|
Hi, I am running bitcoind on docker (windows 10). RPC is working good. I am getting a lot of banning messages for docker bridge address, on all ports. 2017-12-30 19:07:50 connection from 172.17.0.1:51902 dropped (banned) 2017-12-30 19:07:50 connection from 172.17.0.1:51904 dropped (banned) 2017-12-30 19:07:50 connection from 172.17.0.1:51906 dropped (banned) 2017-12-30 19:07:50 connection from 172.17.0.1:51908 dropped (banned) 2017-12-30 19:07:50 connection from 172.17.0.1:51910 dropped (banned) 2017-12-30 19:07:50 connection from 172.17.0.1:51912 dropped (banned) 2017-12-30 19:07:50 connection from 172.17.0.1:51914 dropped (banned) 2017-12-30 19:07:50 connection from 172.17.0.1:51916 dropped (banned) And so on for all the ports. I am not the first to encounter this. https://github.com/amacneil/docker-bitcoin/issues/32Any idea how to solve it? Thanks, Ady.
|
|
|
First up... you don't need a huge fee for BTG... the blocks are almost empty... 5 sats/byte should be more than enough to get a confirmation in next block  You can calculate your rough transaction size as: (#inputs * 148) + (#outputs * 34) + 10 That should be fairly close to your final transaction size. So in you case, you'll have one input and should be sending to one address, so your transaction size will be: (1 * 148) + (1 * 34) + 10 = ~192 bytes... at 5 sats/byte -> 5 * 192 = 960 sats.... or 0.00000960 BTG The error message you are getting sounds like you are trying to broadcast a transaction that has not been signed by the minimum number of private keys required for the multiSig. Are you sure that you signed your transaction with the 2nd private key??  Thanks, I did it again now, its the second address for sure. Same error: 66: min relay fee not met (code -26) Am I suppose to sign more than one transaction? https://btgexplorer.com/address/AG6JFd6GebjuDRCB8SMvjhTqgehXLDRveRI did it for this transaction, am I right? a4c64944cfc57822c460436d7fd359bb641cf63e86ba95f50bf5789516bd160b
|
|
|
Great tutorial, I manged to get to the end, and I learned a lot. But I get an error: 66: min relay fee not met (code -26) I can't calc the fee in electrum, its emtpy, so it will not give me the total, only per byte:  300 sat per byte. So I gave 50,000 sat fee, to be on the safe side. now I am getting 16: mandatory-script-verify-flag-failed (Signature must be zero for failed CHECK(MULTI)SIG operation) (code -26) Address: https://btgexplorer.com/address/AG6JFd6GebjuDRCB8SMvjhTqgehXLDRveRI did it for this transaction: a4c64944cfc57822c460436d7fd359bb641cf63e86ba95f50bf5789516bd160b
|
|
|
**Warning: It is about to get nerdy**If this is too intimidating or you get stuck, please consider our BTG Digging Service. We will do this for you and charge a small fee. References available. Walleting.Services BTG Digging: --> https://bitcointalk.org/index.php?topic=2434261.0 <-- Hi, I am trying to do the same thing, but are having trouble with step 8, signing the transaction. Are you able to write a bit more detail on how you set the transaction up/ got the txid and vout? I must be using a wrong one somehow. When signing the transaction the hex i get is identical to the one i put in.
First you need to gather all the inputs that funded the address (essentially you need to find all transactions that funded the address and were unspent when the fork happened). I did all the steps, I have now 2 wallets, with 2 addresses that need to be signed. (both are first addresses from some reason) Now the inputs: https://blockchain.info/address/321SXfj5sMQ8VcgcgtNC1SZgMa4YZrvLWv
or here https://btgexplorer.com/address/AG6JFd6GebjuDRCB8SMvjhTqgehXLDRveR
Can you please help me to build the command? I guess its the second transaction from the buttom? a4c64944cfc57822c460436d7fd359bb641cf63e86ba95f50bf5789516bd160b createrawtransaction '[{"txid": "63d10de4ba8bd486a4f4eb1419a6bc7a52d3ce3d73f6e4dc8e7ecb6d8dd504b3", "vout":0.98889564}]' '{"AG6JFd6GebjuDRCB8SMvjhTqgehXLDRveR": 0.98889564}' I am getting "JSON integer out of range (code -1)" update - ok - no need in 0. before the value - so createrawtransaction '[{"txid": "63d10de4ba8bd486a4f4eb1419a6bc7a52d3ce3d73f6e4dc8e7ecb6d8dd504b3", "vout":98889564}]' '{"AG6JFd6GebjuDRCB8SMvjhTqgehXLDRveR": 98889564}' now I am getting amount out of range (code -3) Should I use the same address or a new address? You have to consider both transaction IDs, anyway the "vout" is the prevout_n, not the value of the transaction. https://bitcointalk.org/index.php?topic=2550529.0You can follow this tutorial step by step, if you need any help feel free to ask Then you have to write the value in BTC, not satoshi (convert with http://satoshitobitcoin.co and don't forget the fee) There is all written in that tutorial Great tutorial, thanks!
|
|
|
**Warning: It is about to get nerdy**If this is too intimidating or you get stuck, please consider our BTG Digging Service. We will do this for you and charge a small fee. References available. Walleting.Services BTG Digging: --> https://bitcointalk.org/index.php?topic=2434261.0 <-- Hi, I am trying to do the same thing, but are having trouble with step 8, signing the transaction. Are you able to write a bit more detail on how you set the transaction up/ got the txid and vout? I must be using a wrong one somehow. When signing the transaction the hex i get is identical to the one i put in.
First you need to gather all the inputs that funded the address (essentially you need to find all transactions that funded the address and were unspent when the fork happened). I did all the steps, I have now 2 wallets, with 2 addresses that need to be signed. (both are first addresses from some reason) Now the inputs: https://blockchain.info/address/321SXfj5sMQ8VcgcgtNC1SZgMa4YZrvLWv
or here https://btgexplorer.com/address/AG6JFd6GebjuDRCB8SMvjhTqgehXLDRveR
Can you please help me to build the command? I guess its the second transaction from the buttom? a4c64944cfc57822c460436d7fd359bb641cf63e86ba95f50bf5789516bd160b createrawtransaction '[{"txid": "63d10de4ba8bd486a4f4eb1419a6bc7a52d3ce3d73f6e4dc8e7ecb6d8dd504b3", "vout":0.98889564}]' '{"AG6JFd6GebjuDRCB8SMvjhTqgehXLDRveR": 0.98889564}' I am getting "JSON integer out of range (code -1)" update - ok - no need in 0. before the value - so createrawtransaction '[{"txid": "63d10de4ba8bd486a4f4eb1419a6bc7a52d3ce3d73f6e4dc8e7ecb6d8dd504b3", "vout":98889564}]' '{"AG6JFd6GebjuDRCB8SMvjhTqgehXLDRveR": 98889564}' now I am getting amount out of range (code -3) Should I use the same address or a new address?
|
|
|
trezor have a new solution for this, didn't check it, I wonder if it will work for the f2a multisig
No, it won't... because the Trezor tool is designed for claiming the BTG from your Trezor BTC wallet... NOT from other wallets. If you need to get the BTG from your Electrum 2FA wallet, you'll need to follow the guide that they have provided here... and you'll need BTG Core installed and fully synced... or you'll need to get someone you trust that has BTG Core, give them your Electrum 2FA seed and let them do it on your behalf. You are right. I have the core installed and sync finished today. Need to find the time to do it, I will update here. Thanks! Ady.
|
|
|
I have the same issue, f2a electrum wallet. trezor have a new solution for this, didn't check it, I wonder if it will work for the f2a multisig https://blog.trezor.io/claim-bitcoin-gold-bgold-btg-f66969e7f2c0I will check it tonight and update. * wallet new version to support this is still in beta, so I will wait few more days.
|
|
|
|