Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Joshua Hannan <[email protected]>
  • Loading branch information
sisyphusSmiling and joshuahannan authored Apr 26, 2024
1 parent d0a2a0d commit eea0627
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ standard contract interfaces.
Like all operations on Flow, there are native fees associated with both computation and storage. To prevent spam and
sustain the bridge account's storage consumption, fees are charged for both onboarding assets and bridging assets. In
the case where storage consumption is expected, fees are charges based on the storage consumed at the current network
rates. In all cases, there a flat-rate fee in addition to any storage fees.
rates. In all cases, there is a flat-rate fee in addition to any storage fees.

### Onboarding

Expand Down
2 changes: 1 addition & 1 deletion cadence/contracts/bridge/FlowEVMBridgeUtils.cdc
Original file line number Diff line number Diff line change
Expand Up @@ -1181,7 +1181,7 @@ contract FlowEVMBridgeUtils {
gasLimit: 15000000,
value: 0.0
)
assert(deployResult.status == EVM.Status.successful, message: "Contract deployment failed")
assert(deployResult.status == EVM.Status.successful, message: "EVM Token contract deployment failed")
let decodedResult: [AnyStruct] = EVM.decodeABI(types: [Type<EVM.EVMAddress>()], data: deployResult.data)
assert(decodedResult.length == 1, message: "Invalid response length")
return decodedResult[0] as! EVM.EVMAddress
Expand Down

0 comments on commit eea0627

Please sign in to comment.