Skip to content

Commit

Permalink
Updated gas prices
Browse files Browse the repository at this point in the history
Co-authored-by: Andrei Vasilescu <vasilescuandrei24@gmail.com>
  • Loading branch information
JustEatAnApple and andreivasilescu24 committed Aug 28, 2024
1 parent 6f41c77 commit 5933f50
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions contracts/examples/adder/interact/src/basic_interact.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ impl AdderInteract {
.interactor
.tx()
.from(&self.adder_owner_address)
.gas(3_000_000)
.gas(6_000_000)
.typed(adder_proxy::AdderProxy)
.init(0u32)
.code(ADDER_CODE_PATH)
Expand Down Expand Up @@ -131,7 +131,7 @@ impl AdderInteract {
.typed(adder_proxy::AdderProxy)
.init(0u32)
.code(ADDER_CODE_PATH)
.gas(3_000_000)
.gas(6_000_000)
.returns(ReturnsNewBech32Address)
});
}
Expand Down Expand Up @@ -159,7 +159,7 @@ impl AdderInteract {
.to(self.state.current_adder_address())
.typed(adder_proxy::AdderProxy)
.add(value)
.gas(3_000_000)
.gas(6_000_000)
});
}

Expand All @@ -184,7 +184,7 @@ impl AdderInteract {
.tx()
.from(&self.wallet_address)
.to(self.state.current_adder_address())
.gas(3_000_000)
.gas(6_000_000)
.typed(adder_proxy::AdderProxy)
.add(value)
.prepare_async()
Expand Down

0 comments on commit 5933f50

Please sign in to comment.