Skip to content

Commit

Permalink
increase price for account create
Browse files Browse the repository at this point in the history
  • Loading branch information
igor-aptos committed Oct 8, 2024
1 parent a862899 commit 4cbf13f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/transaction-emitter-lib/src/emitter/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const MAX_TXNS: u64 = 1_000_000_000;

// TODO Transfer cost increases during Coin => FA migration, we can reduce back later.
pub const EXPECTED_GAS_PER_TRANSFER: u64 = 10;
pub const EXPECTED_GAS_PER_ACCOUNT_CREATE: u64 = 1050 + 8;
pub const EXPECTED_GAS_PER_ACCOUNT_CREATE: u64 = 1100 + 20;

const MAX_RETRIES: usize = 12;

Expand Down

0 comments on commit 4cbf13f

Please sign in to comment.