Skip to content

Commit

Permalink
fix: fee too low (stacking orders)
Browse files Browse the repository at this point in the history
  • Loading branch information
lgalabru committed Dec 3, 2021
1 parent fca7cbc commit 90d46b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/integrate/events_observer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ pub async fn publish_stacking_orders(
let pox_contract_id = pox_info.contract_id.clone();

std::thread::spawn(move || {
let default_fee = fee_rate * 10;
let default_fee = fee_rate * 1000;
let stacks_rpc = StacksRpc::new(&node_url);
let nonce = stacks_rpc
.get_nonce(&account.address)
Expand Down

0 comments on commit 90d46b7

Please sign in to comment.