Skip to content

Commit

Permalink
update Table.sol getUint (#911)
Browse files Browse the repository at this point in the history
  • Loading branch information
bxq2011hust committed Aug 21, 2020
1 parent 9754872 commit 5638976
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/manual/smart_contract.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ contract KVTableFactory {
//一条记录
contract Entry {
function getInt(string) public constant returns (int256);
function getUInt(string) public constant returns (int256);
function getUInt(string) public constant returns (uint256);
function getAddress(string) public constant returns (address);
function getBytes64(string) public constant returns (bytes1[64]);
function getBytes32(string) public constant returns (bytes32);
Expand Down
2 changes: 1 addition & 1 deletion en/docs/manual/smart_contract.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ contract KVTableFactory {
//one record
contract Entry {
function getInt(string) public constant returns (int256);
function getUInt(string) public constant returns (int256);
function getUInt(string) public constant returns (uint256);
function getAddress(string) public constant returns (address);
function getBytes64(string) public constant returns (bytes1[64]);
function getBytes32(string) public constant returns (bytes32);
Expand Down

0 comments on commit 5638976

Please sign in to comment.