Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions chains/evm/message/lifiEscrow.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,10 @@ func (h *LifiEscrowMessageHandler) HandleMessage(m *message.Message) (*proposal.
return nil, err
}

unlockHash, err := borrowManyUnlockHash(
unlockHash, err := borrowUnlockHash(
calldata,
[]*big.Int{data.BorrowAmount},
[]common.Address{borrowToken},
data.BorrowAmount,
borrowToken,
new(big.Int).SetUint64(destChainID),
h.lifiAddresses[destChainID],
big.NewInt(order.Order.FillDeadline.Unix()).Uint64(),
Expand Down
Loading