lightning 12.0.2 → 12.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Versions
2
2
 
3
- ## 12.0.2
3
+ ## 12.0.3
4
4
 
5
5
  ### Breaking Changes
6
6
 
@@ -110,6 +110,11 @@ module.exports = ({lnd}) => {
110
110
  tokens: request.tokens,
111
111
  });
112
112
  } catch (err) {
113
+ sub.write({
114
+ action: forwardPaymentActions.reject,
115
+ incoming_circuit_key: data.incoming_circuit_key,
116
+ });
117
+
113
118
  return emitErr([503, err.message]);
114
119
  }
115
120
  });
package/package.json CHANGED
@@ -51,5 +51,5 @@
51
51
  "directory": "test-typescript/typescript"
52
52
  },
53
53
  "types": "index.d.ts",
54
- "version": "12.0.2"
54
+ "version": "12.0.3"
55
55
  }