Skip to content
Snippets Groups Projects
Commit d7fcd746 authored by Mariano Absatz (git)'s avatar Mariano Absatz (git)
Browse files

fix indentation

parent 5d89af42
No related branches found
No related tags found
No related merge requests found
......@@ -46,8 +46,9 @@ contract Stamper {
}
// devuelve la cantidad de stamps que hay de este object
function getObjectCount( uint256 object ) public view returns (uint256) {
return hashobjects[object].length;
function getObjectCount( uint256 object ) public view returns (uint256)
{
return hashobjects[object].length;
}
// devuelve la ubicacion en la stamplist de un stamp especifico de este object
......@@ -57,8 +58,9 @@ contract Stamper {
}
// devuelve la cantidad de stamps que realizo este stamper
function getStamperCount( address stamper ) public view returns (uint256) {
return hashstampers[stamper].length;
function getStamperCount( address stamper ) public view returns (uint256)
{
return hashstampers[stamper].length;
}
// devuelve la ubicacion en la sstamplist de un stamp especifico de este stamper
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment