DEV Community

jayateertha043
jayateertha043

Posted on

Solidity Overflow in my web3 code but works in oneclickdapp [Final Year Project]

This is the link of oneclickapp which is working https://oneclickdapp.com/center-east/.

This is Link of Contract:https://rinkeby.etherscan.io/address/0x33febb8f192941a87d87ef70cc5f4427c44bf29e#code

Contract Source Code:

contract Patient is Hospital{
    uint256 public pindex=0;
    
    struct Records {
    string hname;
    string reason;
    string admittedOn;
    string dischargedOn;
    string ipfs;
    }
    
    struct patient{
        uint256 id;
        string name;
        string phone;
        string

Top comments (0)