Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add files via upload #20

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions Backup-codes-fullingtonamanda074.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
SAVE YOUR BACKUP CODES
Keep these backup codes somewhere safe but accessible.

1. 8134 7585 6. 5819 7838
2. 4992 3817 7. 7053 0676
3. 1499 2848 8. 8290 8141
4. 0305 7161 9. 0101 6188
5. 2986 6446 10. 6076 3525

(fullingtonamanda074@gmail.com)

* You can only use each backup code once.
* Need more? Visit https://g.co/2sv
* These codes were generated on: Mar 28, 2023.
Binary file not shown.
Binary file added SHA256SUMS.ots
Binary file not shown.
58 changes: 58 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
version: '{branch}.{build}'
skip_tags: true
image: Visual Studio 2017
configuration: Release
platform: x64
clone_depth: 5
environment:
APPVEYOR_SAVE_CACHE_ON_ERROR: true
CLCACHE_SERVER: 1
PACKAGES: berkeleydb boost-filesystem boost-signals2 boost-test libevent openssl rapidcheck zeromq
PATH: 'C:\Python37-x64;C:\Python37-x64\Scripts;%PATH%'
PYTHONUTF8: 1
cache:
- C:\tools\vcpkg\installed -> .appveyor.yml
- C:\Users\appveyor\clcache -> .appveyor.yml, build_msvc\**, **\Makefile.am, **\*.vcxproj.in
install:
- cmd: pip install --quiet git+https://github.com/frerich/clcache.git@v4.2.0
# Disable zmq test for now since python zmq library on Windows would cause Access violation sometimes.
# - cmd: pip install zmq
- cmd: echo set(VCPKG_BUILD_TYPE release) >> C:\tools\vcpkg\triplets\%PLATFORM%-windows-static.cmake
- cmd: vcpkg remove --outdated --recurse
- cmd: vcpkg install --triplet %PLATFORM%-windows-static %PACKAGES% > NUL
before_build:
- ps: clcache -M 536870912
- cmd: python build_msvc\msvc-autogen.py
- ps: $files = (Get-ChildItem -Recurse | where {$_.extension -eq ".vcxproj"}).FullName
- ps: for (${i} = 0; ${i} -lt ${files}.length; ${i}++) {
${content} = (Get-Content ${files}[${i}]);
${content} = ${content}.Replace("</RuntimeLibrary>", "</RuntimeLibrary><DebugInformationFormat>None</DebugInformationFormat>");
${content} = ${content}.Replace("<WholeProgramOptimization>true", "<WholeProgramOptimization>false");
Set-Content ${files}[${i}] ${content};
}
- ps: Start-Process clcache-server
- ps: fsutil behavior set disablelastaccess 0 # Enable Access time feature on Windows (for clcache)
build_script:
- cmd: msbuild /p:TrackFileAccess=false /p:CLToolExe=clcache.exe build_msvc\bitcoin.sln /m /v:q /nologo
after_build:
- ps: fsutil behavior set disablelastaccess 1 # Disable Access time feature on Windows (better performance)
- ps: clcache -z
before_test:
- ps: ${conf_ini} = (Get-Content([IO.Path]::Combine(${env:APPVEYOR_BUILD_FOLDER}, "test", "config.ini.in")))
- ps: ${conf_ini} = ${conf_ini}.Replace("@abs_top_srcdir@", ${env:APPVEYOR_BUILD_FOLDER})
- ps: ${conf_ini} = ${conf_ini}.Replace("@abs_top_builddir@", ${env:APPVEYOR_BUILD_FOLDER})
- ps: ${conf_ini} = ${conf_ini}.Replace("@EXEEXT@", ".exe")
- ps: ${conf_ini} = ${conf_ini}.Replace("@ENABLE_WALLET_TRUE@", "")
- ps: ${conf_ini} = ${conf_ini}.Replace("@BUILD_BITCOIN_CLI_TRUE@", "")
- ps: ${conf_ini} = ${conf_ini}.Replace("@BUILD_BITCOIND_TRUE@", "")
- ps: ${conf_ini} = ${conf_ini}.Replace("@ENABLE_ZMQ_TRUE@", "")
- ps: ${utf8} = New-Object System.Text.UTF8Encoding ${false}
- ps: '[IO.File]::WriteAllLines([IO.Path]::Combine(${env:APPVEYOR_BUILD_FOLDER}, "test", "config.ini"), ${conf_ini}, ${utf8})'
- ps: move "build_msvc\${env:PLATFORM}\${env:CONFIGURATION}\*.exe" src
test_script:
- cmd: src\test_bitcoin.exe -k stdout -e stdout 2> NUL
- cmd: src\bench_bitcoin.exe -evals=1 -scaling=0 > NUL
- ps: python test\util\bitcoin-util-test.py
- cmd: python test\util\rpcauth-test.py
- cmd: python test\functional\test_runner.py --ci --quiet --combinedlogslen=4000 --failfast
deploy: off
405 changes: 405 additions & 0 deletions bip-0173.mediawiki

Large diffs are not rendered by default.

Binary file added bitcoin-25.0 (1).tar.gz
Binary file not shown.
Binary file added bitcoin-25.0.tar.gz
Binary file not shown.
Binary file added bitcoin-25.0.torrent
Binary file not shown.
Binary file added bitcoin-25.0.zip
Binary file not shown.
Binary file added bolt-16.0.0.src.tar.xz
Binary file not shown.
Binary file added bolt-16.0.0.src.tar.xz.sig
Binary file not shown.
Binary file added chapter12.pdf
Binary file not shown.
23 changes: 23 additions & 0 deletions cirrus.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
container:
image: ubuntu:jammy
cpu: 1
memory: 1G
lint_task:
use_compute_credits: true
only_if: $CIRRUS_BASE_BRANCH == 'main'
stateful: false # https://cirrus-ci.org/guide/writing-tasks/#stateful-tasks
setup_script: apt-get update && apt-get install -y git libgpgme-dev
merge_base_script:
- git fetch $CIRRUS_REPO_CLONE_URL "pull/${CIRRUS_PR}/merge"
- git checkout FETCH_HEAD # Derive full diff based on merge commit, see lint_script

cargo_target_cache:
folder: out-dir
fingerprint_script: git log -1 -- ./contrib/touched-files-check/ .cirrus.yml
populate_script:
- mkdir out-dir
- apt-get install -y cargo
- cd ./contrib/touched-files-check
- cargo build
- mv ./target/debug/touched-files-check ./../../out-dir/
lint_script: ./out-dir/touched-files-check "HEAD~..HEAD"
1 change: 1 addition & 0 deletions description
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GNU Guix and GNU Guix System
Binary file added gh-2.30.0-2.fc39.aarch64.rpm
Binary file not shown.
Binary file added gh-2.30.0-2.fc39.ppc64le.rpm
Binary file not shown.
Binary file added gh-2.30.0-2.fc39.s390x.rpm
Binary file not shown.
Binary file added gh-2.30.0-2.fc39.src.rpm
Binary file not shown.
Binary file added gh-debuginfo-2.30.0-2.fc39.ppc64le.rpm
Binary file not shown.
Binary file added gh-debugsource-2.30.0-2.fc39.aarch64.rpm
Binary file not shown.
Binary file added gh-debugsource-2.30.0-2.fc39.ppc64le.rpm
Binary file not shown.
Binary file added gh_2.30.0_linux_386.rpm
Binary file not shown.
Binary file added gh_2.30.0_linux_386.tar.gz
Binary file not shown.
Binary file not shown.
Binary file added llvm-project-llvmorg-16.0.0.tar.gz
Binary file not shown.
Binary file added llvm-project-llvmorg-16.0.0.zip
Binary file not shown.
Loading