Change fee to 0.002 which appears to be better for no-delay right now.

This commit is contained in:
Sean Bowe 2016-02-26 07:30:45 -07:00
parent 38c50c6772
commit cb944f8e1b
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ pub fn solve_sudoku(client: &mut jsonrpc::client::Client,
Ok(addr) => {
let request = client.build_request("createrawtransaction".to_string(), vec![
Json::from_str(&format!("[{{\"txid\":\"{}\",\"vout\":{}}}]", txid, vout)).expect("parsing inputs"),
Json::from_str(&format!("{{\"{}\":0.099}}", addr)).expect("parsing outputs")
Json::from_str(&format!("{{\"{}\":0.098}}", addr)).expect("parsing outputs")
]);
match client.send_request(&request).and_then(|res| res.into_result::<String>()) {
Ok(tx) => {