Skip to content

Commit

Permalink
update util import
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoch05 committed Jan 3, 2024
1 parent 2513fac commit f23f66d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 47 deletions.
2 changes: 1 addition & 1 deletion helix-contract/contracts/ln/HelixLnBridgeV3.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pragma solidity ^0.8.17;
import "@zeppelin-solidity/contracts/proxy/utils/Initializable.sol";
import "./base/LnBridgeSourceV3.sol";
import "./base/LnBridgeTargetV3.sol";
import "./interface/ILowLevelMessager.sol";
import "../interfaces/IMessager.sol";

contract HelixLnBridgeV3 is Initializable, LnBridgeSourceV3, LnBridgeTargetV3 {
struct MessagerService {
Expand Down
6 changes: 3 additions & 3 deletions helix-contract/contracts/ln/base/LnBridgeSourceV3.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
pragma solidity ^0.8.17;

import "@zeppelin-solidity/contracts/security/Pausable.sol";
import "./LnAccessController.sol";
import "./TokenTransferHelper.sol";
import "../../utils/AccessController.sol";
import "../../utils/TokenTransferHelper.sol";

/// @title LnBridgeSourceV3
/// @notice LnBridgeSourceV3 is a contract to help user lock token and then trigger remote chain relay
/// @dev See https://github.com/helix-bridge/contracts/tree/master/helix-contract
contract LnBridgeSourceV3 is Pausable, LnAccessController {
contract LnBridgeSourceV3 is Pausable, AccessController {
uint256 constant public SLASH_EXPIRE_TIME = 60 * 60;
uint256 constant public MAX_TRANSFER_AMOUNT = type(uint112).max;
// liquidity fee base rate
Expand Down
43 changes: 0 additions & 43 deletions helix-contract/contracts/ln/base/TokenTransferHelper.sol

This file was deleted.

0 comments on commit f23f66d

Please sign in to comment.