Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libdap-chain-net-srv
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
cellframe
libdap-chain-net-srv
Merge requests
!6
changed parameter in dap_chain_datum_tx_receipt_sign_add() because
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
changed parameter in dap_chain_datum_tx_receipt_sign_add() because
feature-2963
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
alexander.lysikov
requested to merge
feature-2963
into
master
5 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
function was changed
👍
0
👎
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
8f23796a
1 commit,
5 years ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
dap_chain_net_srv.c
+
1
−
1
Options
@@ -544,7 +544,7 @@ dap_chain_datum_tx_receipt_t * dap_chain_net_srv_issue_receipt(dap_chain_net_srv
size_t
l_receipt_size
=
l_receipt
->
size
;
// nested receipt plus 8 bits for type
// Sign with our wallet
l_receipt_size
=
dap_chain_datum_tx_receipt_sign_add
(
l_receipt
,
l_receipt_size
,
dap_chain_wallet_get_key
(
a_
usag
e
->
wallet
,
0
)
);
l_receipt_size
=
dap_chain_datum_tx_receipt_sign_add
(
&
l_receipt
,
l_receipt_size
,
dap_chain_wallet_get_key
(
a_
pric
e
->
wallet
,
0
)
);
a_usage
->
receipt
=
l_receipt
;
a_usage
->
receipt_size
=
l_receipt_size
;
Loading