Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Duniter v2S
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
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
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nodes
rust
Duniter v2S
Compare revisions
master to master
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
nodes/rust/duniter-v2s
Select target project
No results found
master
Select Git revision
Branches
1000i100-test
105_gitlab_container_registry
cgeek/issue-297-cpu
ci_cache
debug/podman
elois-compose-metrics
elois-duniter-storage
elois-smoldot
feature/dc-dump
feature/distance-rule
feature/show_milestone
fix-252
gdev-800-tests
hugo-release/runtime-701
hugo-tmp-dockerfile-cache
hugo/195-doc
hugo/195-graphql-schema
hugo/distance-precompute
hugo/endpoint-gossip
hugo/tmp-0.9.1
master
network/gdev-800
network/gdev-802
network/gdev-803
network/gdev-900
network/gtest-1000
pini-check-password
release/client-800.2
release/hugo-chainspec-gdev5
release/poka-chainspec-gdev5
release/poka-chainspec-gdev5-pini-docker
release/runtime-100
release/runtime-200
release/runtime-300
release/runtime-400
release/runtime-401
release/runtime-500
release/runtime-600
release/runtime-700
release/runtime-701
release/runtime-800
runtime/gtest-1000
tests/distance-with-oracle
tuxmain/anonymous-tx
tuxmain/benchmark-distance
update-docker-compose-rpc-squid-names
upgradable-multisig
Tags
gdev-800
gdev-800-0.8.0
gdev-802
gdev-803
gdev-900-0.10.0
gdev-900-0.10.1
gdev-900-0.9.0
gdev-900-0.9.1
gdev-900-0.9.2
gtest-1000
gtest-1000-0.11.0
runtime-100
runtime-101
runtime-102
runtime-103
runtime-104
runtime-105
runtime-200
runtime-201
runtime-300
runtime-301
runtime-302
runtime-303
runtime-400
runtime-401
runtime-500
runtime-600
runtime-700
runtime-701
runtime-800
runtime-800-backup
runtime-800-bis
runtime-801
v0.1.0
v0.2.0
v0.3.0
v0.4.0
v0.4.1
85 results
Swap
Target
bgallois/duniter-v2s
Select target project
nodes/rust/duniter-v2s
llaq/lc-core-substrate
pini-gh/duniter-v2s
vincentux/duniter-v2s
mildred/duniter-v2s
d0p1/duniter-v2s
bgallois/duniter-v2s
Nicolas80/duniter-v2s
8 results
master
Select Git revision
Branches
archive_upgrade_polkadot_v0.9.42
david-wot-scenarios-cucumber
distance
elois-ci-binary-release
elois-compose-metrics
elois-duniter-storage
elois-fix-85
elois-fix-idty-post-genesis
elois-fix-sufficients-change-owner-key
elois-opti-cert
elois-remove-renewable-period
elois-revoc-with-old-key
elois-rework-certs
elois-smish-members-cant-change-or-rem-idty
elois-smoldot
elois-substrate-v0.9.23
elois-technical-commitee
hugo-gtest
hugo-remove-duniter-account
hugo-rework-genesis
hugo-tmp
jrx/workspace_tomls
master
no-bootnodes
pallet-benchmark
release/poka-chainspec-gdev5
release/poka-chainspec-gdev5-pini-docker
release/runtime-100
release/runtime-200
release/runtime-300
release/runtime-400
test-gen-new-owner-key-msg
ts-types
ud-time-64
upgrade_polkadot_v0.9.42
Tags
runtime-100
runtime-101
runtime-102
runtime-103
runtime-104
runtime-105
runtime-200
runtime-201
runtime-300
runtime-301
runtime-302
runtime-303
runtime-400
v0.1.0
v0.2.0
v0.3.0
v0.4.0
52 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
runtime/g1/README.md
+4
-0
4 additions, 0 deletions
runtime/g1/README.md
runtime/g1/build.rs
+10
-7
10 additions, 7 deletions
runtime/g1/build.rs
with
14 additions
and
7 deletions
Some changes are not shown.
For a faster browsing experience, only
2 of 262+
files are shown.
runtime/g1/README.md
0 → 100644
View file @
bf197712
# Ğ1 runtime
Ğ1 runtime is the one used in the production Ğ1 network.
It is the same as ĞTest runtime with a bit of delay on updates necessary to test them.
\ No newline at end of file
This diff is collapsed.
Click to expand it.
runtime/g1/build.rs
View file @
bf197712
...
@@ -14,12 +14,15 @@
...
@@ -14,12 +14,15 @@
// You should have received a copy of the GNU Affero General Public License
// You should have received a copy of the GNU Affero General Public License
// along with Duniter-v2S. If not, see <https://www.gnu.org/licenses/>.
// along with Duniter-v2S. If not, see <https://www.gnu.org/licenses/>.
use
substrate_wasm_builder
::
WasmBuilder
;
fn
main
()
{
fn
main
()
{
WasmBuilder
::
new
()
#[cfg(feature
=
"std"
)]
.with_current_project
()
{
.export_heap_base
()
#[cfg(not(feature
=
"metadata-hash"
))]
.import_memory
()
substrate_wasm_builder
::
WasmBuilder
::
init_with_defaults
()
.build
();
.build
()
#[cfg(feature
=
"metadata-hash"
)]
substrate_wasm_builder
::
WasmBuilder
::
init_with_defaults
()
.enable_metadata_hash
(
"Ğ"
,
2
)
.build
();
}
}
}
This diff is collapsed.
Click to expand it.
Prev
1
…
10
11
12
13
14
Next