(newState: TransactionState)
| 237 | } |
| 238 | |
| 239 | setState(newState: TransactionState) { |
| 240 | this.state = newState |
| 241 | |
| 242 | if (newState === `completed` || newState === `failed`) { |
| 243 | removeFromPendingList(this) |
| 244 | } |
| 245 | } |
| 246 | |
| 247 | /** |
| 248 | * Execute collection operations within this transaction |
no test coverage detected