Skip to content

Latest commit

 

History

History
23 lines (13 loc) · 1.08 KB

SWC-113.md

File metadata and controls

23 lines (13 loc) · 1.08 KB

Title

DoS with Failed Call

Relationships

CWE-703: Improper Check or Handling of Exceptional Conditions

Description

External calls can fail accidentally or deliberately, which can cause a DoS condition in the contract. To minimize the damage caused by such failures, it is better to isolate each external call into its own transaction that can be initiated by the recipient of the call. This is especially relevant for payments, where it is better to let users withdraw funds rather than push funds to them automatically (this also reduces the chance of problems with the gas limit).

Remediation

It is recommended to follow call best practices:

  • Avoid combining multiple calls in a single transaction, especially when calls are executed as part of a loop
  • Always assume that external calls can fail
  • Implement the contract logic to handle failed calls

References