Skip to content

Commit

Permalink
tests: make simple-consensus free
Browse files Browse the repository at this point in the history
  • Loading branch information
pro-wh committed May 5, 2021
1 parent 781db20 commit 97cec82
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/runtimes/simple-consensus/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@ impl sdk::Runtime for Runtime {
modules::consensus_accounts::Genesis {
parameters: modules::consensus_accounts::Parameters {
gas_costs: modules::consensus_accounts::GasCosts {
tx_deposit: 100,
tx_withdraw: 100,
// These are free, in order to simplify testing. We do test gas accounting
// with other methods elsewhere though.
tx_deposit: 0,
tx_withdraw: 0,
},
},
},
Expand Down

0 comments on commit 97cec82

Please sign in to comment.