You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
contract Custom
{
struct Land {
address owner;
string location;
}
mapping(uint256=>Land) public landRecords0;
constructor ()
{
}
function addLandRecord(uint256 landId, address owner, string memory location) public
{
landRecords0[landId] = Land(owner, location);
}
function updateLandOwner(uint256 landId, address newOwner) public
{
landRecords0[landId].owner = newOwner;
}
function updateLandLocation(uint256 landId, string memory newLocation) public
{
landRecords0[landId].location = newLocation;
}
function getLandRecord(uint256 landId) public view returns (address ,string memory)
{
return (landRecords0[landId].owner, landRecords0[landId].location);
}
}
Can any one help me ? Here is contract. I am calling functions with symbolics inputs. addRecords -> updateLandLocation -> getLandRecord but it's hang on generating .pkl files instead of complete.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Can any one help me ? Here is contract. I am calling functions with symbolics inputs. addRecords -> updateLandLocation -> getLandRecord but it's hang on generating .pkl files instead of complete.
Beta Was this translation helpful? Give feedback.
All reactions