Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
duniter
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
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
nodes
typescript
duniter
Commits
b59c4895
Commit
b59c4895
authored
1 year ago
by
Benoit Lavenier
Browse files
Options
Downloads
Patches
Plain Diff
fix(bma) transactions are always stored in 1.9+ (need by GVA)
parent
386a7e3d
Branches
fix/1441/node_summary_with_storage
No related tags found
1 merge request
!1424
enh(1441): Add config's storage into BMA /node/summary
Pipeline
#32153
failed
1 year ago
Stage: tests
Stage: package
Stage: quality
Stage: integration
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
app/lib/dto/ConfDTO.ts
+0
-2
0 additions, 2 deletions
app/lib/dto/ConfDTO.ts
app/modules/bma/lib/controllers/node.ts
+1
-3
1 addition, 3 deletions
app/modules/bma/lib/controllers/node.ts
neon/native/src/server.rs
+1
-1
1 addition, 1 deletion
neon/native/src/server.rs
with
2 additions
and
6 deletions
app/lib/dto/ConfDTO.ts
+
0
−
2
View file @
b59c4895
...
@@ -24,7 +24,6 @@ export interface Keypair {
...
@@ -24,7 +24,6 @@ export interface Keypair {
export
interface
StorageDTO
{
export
interface
StorageDTO
{
storage
?:
{
storage
?:
{
transactions
?:
boolean
;
wotwizard
?:
boolean
;
wotwizard
?:
boolean
;
};
};
}
}
...
@@ -200,7 +199,6 @@ export class ConfDTO
...
@@ -200,7 +199,6 @@ export class ConfDTO
},
},
public
powNoSecurity
=
false
,
public
powNoSecurity
=
false
,
public
storage
=
{
public
storage
=
{
transactions
:
false
,
wotwizard
:
false
,
wotwizard
:
false
,
},
},
public
txsMempoolSize
?:
number
public
txsMempoolSize
?:
number
...
...
This diff is collapsed.
Click to expand it.
app/modules/bma/lib/controllers/node.ts
+
1
−
3
View file @
b59c4895
...
@@ -23,9 +23,7 @@ export class NodeBinding extends AbstractController {
...
@@ -23,9 +23,7 @@ export class NodeBinding extends AbstractController {
version
:
this
.
server
.
version
,
version
:
this
.
server
.
version
,
forkWindowSize
:
this
.
server
.
conf
.
forksize
,
forkWindowSize
:
this
.
server
.
conf
.
forksize
,
storage
:
{
storage
:
{
transactions
:
this
.
server
.
conf
.
storage
transactions
:
true
,
// Always true, in 1.9
?
this
.
server
.
conf
.
storage
.
transactions
:
true
,
// true by default (see app/module/config.ts)
wotwizard
:
this
.
server
.
conf
.
storage
?.
wotwizard
||
false
,
// false by default (see app/module/config.ts)
wotwizard
:
this
.
server
.
conf
.
storage
?.
wotwizard
||
false
,
// false by default (see app/module/config.ts)
},
},
},
},
...
...
This diff is collapsed.
Click to expand it.
neon/native/src/server.rs
+
1
−
1
View file @
b59c4895
...
@@ -54,7 +54,7 @@ declare_types! {
...
@@ -54,7 +54,7 @@ declare_types! {
let
self_key_pair
=
if
let
Some
(
self_keypair_str
)
=
rust_server_conf_stringified
.self_keypair
{
let
self_key_pair
=
if
let
Some
(
self_keypair_str
)
=
rust_server_conf_stringified
.self_keypair
{
into_neon_res
(
&
mut
cx
,
crate
::
crypto
::
keypair_from_expanded_base58_secret_key
(
&
self_keypair_str
))
?
into_neon_res
(
&
mut
cx
,
crate
::
crypto
::
keypair_from_expanded_base58_secret_key
(
&
self_keypair_str
))
?
}
else
{
}
else
{
Ed25519KeyPair
::
generate_random
()
.expect
(
"fail to gen random key
y
pair"
)
Ed25519KeyPair
::
generate_random
()
.expect
(
"fail to gen random keypair"
)
};
};
let
txs_mempool_size
=
rust_server_conf_stringified
.txs_mempool_size
as
usize
;
let
txs_mempool_size
=
rust_server_conf_stringified
.txs_mempool_size
as
usize
;
let
conf
=
DuniterCoreConf
{
let
conf
=
DuniterCoreConf
{
...
...
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