Skip to content

Commit 6ab44be

Browse files
authored
Merge pull request #22 from itwysgsl/master
MicroBitcoin 3.0
2 parents 0119e8e + a6aa691 commit 6ab44be

2,168 files changed

Lines changed: 412500 additions & 260083 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.DS_Store

10 KB
Binary file not shown.

.gitignore

Lines changed: 45 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
*.tar.gz
22

33
*.exe
4-
src/bitcoin
4+
*.pdb
5+
src/micro
56
src/microd
67
src/micro-cli
8+
src/micro-gui
9+
src/micro-node
710
src/micro-tx
8-
src/test/test_bitcoin
9-
src/test/test_bitcoin_fuzzy
11+
src/micro-util
12+
src/micro-wallet
13+
src/test/fuzz/fuzz
14+
src/test/test_micro
1015
src/qt/test/test_micro-qt
1116

1217
# autoreconf
@@ -26,13 +31,16 @@ build-aux/m4/ltversion.m4
2631
build-aux/missing
2732
build-aux/compile
2833
build-aux/test-driver
34+
config.cache
2935
config.log
3036
config.status
3137
configure
38+
configure~
3239
libtool
3340
src/config/micro-config.h
3441
src/config/micro-config.h.in
3542
src/config/stamp-h1
43+
src/obj
3644
share/setup.nsi
3745
share/qt/Info.plist
3846

@@ -54,36 +62,45 @@ src/qt/micro-qt.includes
5462
.dirstamp
5563
.libs
5664
.*.swp
57-
*.*~*
65+
*~
5866
*.bak
5967
*.rej
6068
*.orig
6169
*.pyc
6270
*.o
6371
*.o-*
64-
*.patch
6572
*.a
6673
*.pb.cc
6774
*.pb.h
75+
*.dat
6876

6977
*.log
7078
*.trs
7179
*.dmg
80+
*.iso
7281

7382
*.json.h
7483
*.raw.h
7584

85+
# Only ignore unexpected patches
86+
*.patch
87+
!depends/patches/**/*.patch
88+
7689
#libtool object files
7790
*.lo
7891
*.la
7992

8093
# Compilation and Qt preprocessor part
8194
*.qm
8295
Makefile
83-
micro-qt
84-
Micro-Qt.app
96+
!depends/Makefile
97+
src/qt/micro-qt
98+
MicroBitcoin-Qt.app
8599
background.tiff*
86100

101+
# Qt Creator
102+
Makefile.am.user
103+
87104
# Unit-tests
88105
Makefile.test
89106
micro-qt_test
@@ -95,24 +112,43 @@ qrc_*.cpp
95112
.DS_Store
96113
build
97114

115+
# Previous releases
116+
releases
117+
98118
#lcov
99119
*.gcno
100120
*.gcda
101121
/*.info
102-
test_bitcoin.coverage/
122+
test_micro.coverage/
103123
total.coverage/
124+
fuzz.coverage/
104125
coverage_percent.txt
126+
/cov_tool_wrapper.sh
127+
qa-assets/
105128

106129
#build tests
107130
linux-coverage-build
108131
linux-build
109132
win32-build
110133
test/config.ini
111134
test/cache/*
135+
test/.mypy_cache/
112136

113137
!src/leveldb*/Makefile
114138

115139
/doc/doxygen/
116140

117-
libbitcoinconsensus.pc
141+
libmicroconsensus.pc
118142
contrib/devtools/split-debug.sh
143+
144+
# Output from running db4 installation
145+
db4/
146+
147+
# clang-check
148+
*.plist
149+
150+
osx_volname
151+
dist/
152+
*.background.tiff
153+
154+
/guix-build-*

COPYING

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2009-2018 The Bitcoin Core developers
4-
Copyright (c) 2009-2018 Bitcoin Developers
5-
Copyright (c) 2019 MicroBitcoin Developers
3+
Copyright (c) 2009-2021 The Bitcoin Core developers
4+
Copyright (c) 2009-2021 Bitcoin Developers
5+
Copyright (c) 2018-2021 MicroBitcoin Developers
66

77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)