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
1
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
Commits
7844eb44
Commit
7844eb44
authored
4 years ago
by
Roman Khlopkov
🔜
Browse files
Options
Downloads
Patches
Plain Diff
[*] Stake service partially debugged
parent
cfaa3c0a
No related branches found
No related tags found
1 merge request
!32
features-3975+3977
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/cellframe-sdk/chain/src/wrapping_dap_chain_ledger.c
+1
-1
1 addition, 1 deletion
modules/cellframe-sdk/chain/src/wrapping_dap_chain_ledger.c
modules/cellframe-sdk/common/src/wrapping_dap_chain_common.c
+1
-1
1 addition, 1 deletion
modules/cellframe-sdk/common/src/wrapping_dap_chain_common.c
with
2 additions
and
2 deletions
modules/cellframe-sdk/chain/src/wrapping_dap_chain_ledger.c
+
1
−
1
View file @
7844eb44
...
...
@@ -230,7 +230,7 @@ PyObject *dap_chain_ledger_tx_cache_find_out_cond_py(PyObject *self, PyObject *a
((
PyDapChainDatumTxObject
*
)
res
)
->
datum_tx
=
(
dap_chain_datum_tx_t
*
)
dap_chain_ledger_tx_cache_find_out_cond
(
((
PyDapChainLedgerObject
*
)
self
)
->
ledger
,
((
PyDapHashFastObject
*
)
obj_first_hash
)
->
hash_fast
,
out_conds
,
out_cond_idx
);
out_conds
,
out_cond_idx
,
NULL
);
return
Py_BuildValue
(
"O"
,
res
);
}
PyObject
*
dap_chain_ledger_tx_cache_get_out_cond_value_py
(
PyObject
*
self
,
PyObject
*
args
){
...
...
This diff is collapsed.
Click to expand it.
modules/cellframe-sdk/common/src/wrapping_dap_chain_common.c
+
1
−
1
View file @
7844eb44
...
...
@@ -33,7 +33,7 @@ PyObject *dap_chain_addr_fill_py(PyObject *self, PyObject *args){
PyObject
*
net_id
;
if
(
!
PyArg_ParseTuple
(
args
,
"O|O"
,
&
key
,
&
net_id
))
return
NULL
;
dap_chain_addr_fill
(((
PyDapChainAddrObject
*
)
self
)
->
addr
,
((
PyCryptoKeyObject
*
)
key
)
->
key
,
&
(((
PyDapChainNetIdObject
*
)
net_id
)
->
net_id
));
dap_chain_addr_fill
_from_key
(((
PyDapChainAddrObject
*
)
self
)
->
addr
,
((
PyCryptoKeyObject
*
)
key
)
->
key
,
(((
PyDapChainNetIdObject
*
)
net_id
)
->
net_id
));
return
self
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment