Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Docker
- geth
- JavaScript
- web3.js
- NFT
- 스마트 컨트랙트
- 네트워크
- server
- ERC165
- blockchain
- erc
- truffle
- ERC20
- 제어의역전
- Python
- web3
- Ethereum
- solidity
- ethers
- MySQL
- 이더리움
- 솔리디티
- web
- erc721
- 블록체인
- Programming
- tcp
- git
- 트랜잭션
- github
Archives
- Today
- Total
멍개의 연구소
[ethereum] solidity overflow, underflow에 대해서 본문
solidity 8.x부터 overflow, underflow가 발생하는 연산은 revert가 발생합니다.
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.10;
contract Test {
function f(uint a, uint b) pure public returns(uint) {
return a - b;
}
}
0에서 1을 감소하면 underflow가 발생하기 때문에 revert가 발생합니다.
만약 의도적인 underflow를 발생해야 한다면 unchecked를 이용하면 됩니다.
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.10;
contract Test {
function g(uint a, uint b) pure public returns(uint) {
unchecked { return a - b; }
}
}
'블록체인' 카테고리의 다른 글
[ethereum] solidity withdrawals pattern(출금패턴) (0) | 2022.08.28 |
---|---|
[ethereum] truffle을 이용하여 스마트 컨트랙트 개발하기 (0) | 2022.08.28 |
[ethereum] input data의 methodId와 event signature 만드는 방법 (0) | 2022.08.28 |
[solidity] library, enum (0) | 2022.08.28 |
[solidity] 에러함수 - require, revert, assert (0) | 2022.08.28 |
Comments