Skip to content

Commit

Permalink
update txn comments
Browse files Browse the repository at this point in the history
  • Loading branch information
sisyphusSmiling committed Apr 16, 2024
1 parent 2b17d52 commit d2b94c5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import "FlowEVMBridgeConfig"
/// This transaction onboards the NFT type to the bridge, configuring the bridge to move NFTs between environments
/// NOTE: This must be done before bridging a Cadence-native NFT to EVM
///
/// @param contractAddressHex: Array of EVM contract addresses (as hex string without 0x prefix) defining the
/// @param addressesAsHex: Array of EVM contract addresses (as hex string without 0x prefix) defining the
/// bridgeable asset to be onboarded
///
transaction(addressesAsHex: [String]) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import "FlowEVMBridgeConfig"
/// This transaction onboards the asset type to the bridge, configuring the bridge to move assets between environments
/// NOTE: This must be done before bridging a Cadence-native asset to EVM
///
/// @param identifer: The Cadence type identifier of the bridgeable asset to onboarded to the bridge
/// @param types: The Cadence types of the bridgeable asset to onboard to the bridge
///
transaction(types: [Type]) {

Expand Down Expand Up @@ -44,8 +44,8 @@ transaction(types: [Type]) {
}

execute {
for type in types {

for type in types {
// Continue on if the type does not require onboarding
if FlowEVMBridge.typeRequiresOnboarding(type) != true {
continue
}
Expand Down

0 comments on commit d2b94c5

Please sign in to comment.