Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • cellframe/python-cellframe
1 result
Show changes
Commits on Source (2)
Subproject commit 5c7a5b4de9d0a19c16a5a4e869bb17489a416ee9
Subproject commit 2b0421355561b73187342ecf71ce491bbbc35899
......@@ -25,5 +25,7 @@ PyObject *wrapping_dap_chain_tx_out_ext_get_token(PyObject *self, void *closure)
}
PyObject *wrapping_dap_chain_tx_out_ext_get_value(PyObject *self, void *closure){
(void)closure;
return Py_BuildValue("k", ((PyDapChainTXOutExtObject*)self)->out_ext->header.value);
DapMathObject *l_math = PyObject_New(DapMathObject, &DapMathObjectType);
l_math->value = ((PyDapChainTXOutExtObject*)self)->out_ext->header.value;
return (PyObject*)l_math;
}