TypeError: Data location must be “memory” or “calldata” (but function is public)

If possible please some help !
I create a contract in Solidity. Because its size is too big i try a way to move some functions to a second contract to free some space.So i have this :
The main contract



    // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/math/Math.sol";
import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "./EscrowHandler.sol";
import "./SharedStructs.sol";

the library SharedStructs.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

library SharedStructs {
    enum AssetType { MyCoin }
    enum PaymentMethod { Ether, USDT }

    struct Order {
    uint256 orderID;
    address buyer;
    address payable owner;
    uint256 price;
    uint256 amount;
    uint256 fulfilledAmount;
    AssetType assetType;
    PaymentMethod priceCurrency;
}
    
}    

and the escrow handler (some other functions maybe will go here too)

    // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "./SharedStructs.sol";
import "./i_MyCoin.sol";
contract EscrowHandler {
    // State variables and mappings related to escrows
    mapping(address => mapping(SharedStructs.AssetType => uint256)) assetBalances;
    mapping(address => mapping(SharedStructs.PaymentMethod => uint256)) escrowBalances;
    // Buy orders separate queues for Ether and USDT
    SharedStructs.Order[] buyOrdersEther;
    SharedStructs.Order[] buyOrdersUSDT;
    // Sell orders separate queues for Ether and USDT
    SharedStructs.Order[] sellOrdersEther;
    SharedStructs.Order[] sellOrdersUSDT;    
    

so on escrow handler i have this function


    function removeOrder(SharedStructs.Order[] storage orders, uint index) internal {
    require(index < orders.length, "Index out of bounds");

    for (uint i = index; i < orders.length - 1; i++) {
        orders[i] = orders[i + 1];
    }
    orders.pop();
}    

so i want to call it also from other contracts for example from myCoin.sol .
Because is internal , i create a public function which will call it :


    function removeOrderExternal(SharedStructs.Order[] storage orders, uint index) public {
    removeOrder(orders, index);
}    

normally should edit the storage orders.So i set “storage orders” but then i receive error

TypeError: Data location must be "memory" or "calldata" for parameter in function, but "storage" was given.   

      --> contracts/EscrowHandler.sol:68:30:
   |
68 | function removeOrderExternal(SharedStructs.Order[] storage orders, uint index) public {
   |                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^   

and of course if i set it to memory like this ,


    function removeOrderExternal(SharedStructs.Order[] memory orders, uint index) public {
    removeOrder(orders, index);
}    

i receive this :

TypeError: Invalid type for argument in function call. Invalid implicit conversion from struct  SharedStructs.Order[] memory to struct SharedStructs.Order[] storage pointer requested.  
     --> contracts/EscrowHandler.sol:69:17:
   |
69 |     removeOrder(orders, index);
   |                 ^^^^^^    
 

because the orders are in storage and not in memory.

So is it possible somehow with public function to edit the storage arrays ? I can not find solution to this. I think solidity not allowing public function to edit storage. But then how i should do it ?

New contributor

Happy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật