Skip to content

Commit

Permalink
Merge pull request #210 from kinode-dao/basilesportif-eth-docs
Browse files Browse the repository at this point in the history
Increase gas price and limit
  • Loading branch information
nick1udwig authored Jun 6, 2024
2 parents 363839b + 3159d6d commit 5d34cde
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cookbook/writing_data_to_eth.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,8 +251,8 @@ First, branching on the enum type `Increment`, call the increment() function wit
chain_id: Some(31337),
nonce: nonce,
to: TxKind::Call(EthAddress::from_str(COUNTER_ADDRESS).unwrap()),
gas_limit: 100000,
gas_price: 100000000,
gas_limit: 1000000,
gas_price: 1000000000,
input: increment.into(),
..Default::default()
};
Expand Down

0 comments on commit 5d34cde

Please sign in to comment.