How can I set the fee rate for raw transactions on Bitcore?

-2

I'm building a raw transaction. How do I set the relay fee in the Bitcore console wallet? I'm trying to send a transaction with 2 signatures. I created the transaction and signed the transaction with 2 complete signatures. After I send the raw transaction I get an error message saying error -26 min relay fee not met. Should I type in "settxfee 0.001" to the console before I create the rawtransaction ?

Start85

Posted 2018-02-24T10:24:30.447

Reputation: 51

3Do you have a problem with your shift-key?ndsvw 2018-02-24T10:38:56.290

3Downvoted due to quality, please don't shout at us :)MeshCollider 2018-02-24T10:58:21.867

I assume that your error message was "min relay fee not met" and corrected what I figured to be a typo.Murch 2018-02-24T20:41:55.080

Answers

0

No, it's not about settxfee, Since you are creating your transaction manually you should consider set transaction fee manually,

let's pretend that your inputs total is 10 BTC Now when you set output amount and destination, you should consider taking out some bitcoins for the fee.

example:

bitcoin-cli createrawtransaction '[{"txid":"myid","vout":0}]' '{"destination address":9.99}'

Adam

Posted 2018-02-24T10:24:30.447

Reputation: 3 215