Skip to content

Commit

Permalink
update deploy funds
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregor Gololicic committed Dec 21, 2023
1 parent 277492e commit 12954bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/evm/deploy.cdc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ transaction(bytecode: String) {
let vaultRef = signer.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault)
?? panic("Could not borrow reference to the owner's Vault!")

self.sentVault <- vaultRef.withdraw(amount: 1.0) as! @FlowToken.Vault
self.sentVault <- vaultRef.withdraw(amount: 10.0) as! @FlowToken.Vault
}

execute {
Expand All @@ -20,7 +20,7 @@ transaction(bytecode: String) {

let address = bridgedAccount.deploy(
code: decodedCode,
gasLimit: 300000,
gasLimit: 1200000,
value: EVM.Balance(flow: 0.0)
)

Expand Down

0 comments on commit 12954bb

Please sign in to comment.