Skip to content

Commit 85f32f7

Browse files
committed
Make tx fee a variable in stackerdb dkg test and increase it
Signed-off-by: Jacinta Ferrant <[email protected]>
1 parent 4ee724e commit 85f32f7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

clarity/src/vm/functions/mod.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,8 @@ macro_rules! switch_on_global_epoch {
6464
};
6565
}
6666

67-
use crate::vm::ClarityVersion;
68-
6967
use super::errors::InterpreterError;
68+
use crate::vm::ClarityVersion;
7069

7170
mod arithmetic;
7271
mod assets;

testnet/stacks-node/src/tests/signer.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,11 @@ fn setup_stx_btc_node(
133133

134134
info!("Send pox contract-publish...");
135135

136+
let tx_fee = 100_000;
136137
let tx = make_contract_publish(
137138
publisher_private_key,
138139
0,
139-
10_000,
140+
tx_fee,
140141
&pox_contract_id.name,
141142
pox_contract,
142143
);
@@ -146,7 +147,7 @@ fn setup_stx_btc_node(
146147
let tx = make_contract_publish(
147148
publisher_private_key,
148149
1,
149-
10_000,
150+
tx_fee,
150151
&stackerdb_contract_id.name,
151152
stackerdb_contract,
152153
);

0 commit comments

Comments
 (0)