Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
python-cellframe
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Code
Merge requests
6
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cellframe
python-cellframe
Merge requests
!413
Master 2809
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Master 2809
master-2809
into
master
Overview
0
Commits
4
Pipelines
0
Changes
1
Merged
Constantin P.
requested to merge
master-2809
into
master
6 months ago
Overview
0
Commits
4
Pipelines
0
Changes
1
Expand
👍
0
👎
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
eb93c737
4 commits,
6 months ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
modules/cellframe-sdk/chain/src/wrapping_dap_chain_ledger.c
+
1
−
1
Options
@@ -86,7 +86,7 @@ PyObject *dap_chain_ledger_tx_add_py(PyObject *self, PyObject *args){
return
NULL
;
dap_hash_fast_t
l_tx_hash
;
dap_hash_fast
(
obj_datum_tx
->
datum_tx
,
dap_chain_datum_tx_get_size
(
obj_datum_tx
->
datum_tx
),
&
l_tx_hash
);
int
res
=
dap_ledger_tx_add
(((
PyDapChainLedgerObject
*
)
self
)
->
ledger
,
obj_datum_tx
->
datum_tx
,
&
l_tx_hash
,
false
);
int
res
=
dap_ledger_tx_add
(((
PyDapChainLedgerObject
*
)
self
)
->
ledger
,
obj_datum_tx
->
datum_tx
,
&
l_tx_hash
,
false
,
NULL
);
return
PyLong_FromLong
(
res
);
}
PyObject
*
dap_chain_ledger_token_add_py
(
PyObject
*
self
,
PyObject
*
args
)
Loading