Skip to content

Commit

Permalink
Fix renamed fields
Browse files Browse the repository at this point in the history
  • Loading branch information
geoff-vball committed Nov 22, 2023
1 parent ebdb01d commit a1c08bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/erc20_to_native_token_bridge.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func ERC20ToNativeTokenBridge() {
burnedTxFeeAddress = common.HexToAddress("0x0100000000000000000000000000000000000000")

emptyDestFeeInfo = nativetokendestination.TeleporterFeeInfo{
ContractAddress: common.Address{},
FeeTokenAddress: common.Address{},
Amount: common.Big0,
}
)
Expand Down
4 changes: 2 additions & 2 deletions tests/native_token_bridge.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ func NativeTokenBridge() {
burnedTxFeeAddress = common.HexToAddress("0x0100000000000000000000000000000000000000")

emptyDestFeeInfo = nativetokendestination.TeleporterFeeInfo{
ContractAddress: common.Address{},
FeeTokenAddress: common.Address{},
Amount: common.Big0,
}
emptySourceFeeInfo = nativetokensource.TeleporterFeeInfo{
ContractAddress: common.Address{},
FeeTokenAddress: common.Address{},
Amount: common.Big0,
}
)
Expand Down

0 comments on commit a1c08bb

Please sign in to comment.