-
Notifications
You must be signed in to change notification settings - Fork 3
Comparing changes
Open a pull request
base repository: BTA-BATA/Bataoshi
base: v0.17.0.15-Linux
head repository: BTA-BATA/Bataoshi
compare: 0.17
Commits on May 1, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 65101fb - Browse repository at this point
Copy the full SHA 65101fbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3393d47 - Browse repository at this point
Copy the full SHA 3393d47View commit details -
Configuration menu - View commit details
-
Copy full SHA for d98fee4 - Browse repository at this point
Copy the full SHA d98fee4View commit details -
Remove errant past from walletcreatefundedpsbt for nLocktime replacea…
…bility Github-Pull: bitcoin#15213 Rebased-From: 85f0ca9
Configuration menu - View commit details
-
Copy full SHA for 54f8dc1 - Browse repository at this point
Copy the full SHA 54f8dc1View commit details -
Addresses https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-6250 Github-Pull: bitcoin#15188 Rebased-From: 3046e5f
Configuration menu - View commit details
-
Copy full SHA for 2eab86b - Browse repository at this point
Copy the full SHA 2eab86bView commit details -
rpc: Make unloadwallet wait for complete wallet unload
Github-Pull: bitcoin#14941 Rebased-From: c37851d
Configuration menu - View commit details
-
Copy full SHA for 0edd154 - Browse repository at this point
Copy the full SHA 0edd154View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2e49756 - Browse repository at this point
Copy the full SHA 2e49756View commit details -
Add function to close all Db's and reload the databae environment
Adds a ReloadDbEnv function to BerkeleyEnvironment in order to close all Db instances, closes the environment, resets it, and then reopens the BerkeleyEnvironment. Also adds a ReloadDbEnv function to BerkeleyDatabase that calls BerkeleyEnvironment's ReloadDbEnv. Github-Pull: bitcoin#12493 Rebased-From: 5d296ac
Configuration menu - View commit details
-
Copy full SHA for fc0ab2b - Browse repository at this point
Copy the full SHA fc0ab2bView commit details -
After encrypting the wallet, reload the database environment
Calls ReloadDbEnv after encrypting the wallet so that the database environment is flushed, closed, and reopened to prevent unencrypted keys from being saved on disk. Github-Pull: bitcoin#12493 Rebased-From: d7637c5
Configuration menu - View commit details
-
Copy full SHA for f6c5ddc - Browse repository at this point
Copy the full SHA f6c5ddcView commit details -
Move BerkeleyEnvironment deletion from internal method to callsite
Instead of having the object destroy itself, having the caller destroy it. Github-Pull: bitcoin#12493 Rebased-From: a769461
Configuration menu - View commit details
-
Copy full SHA for c9918ad - Browse repository at this point
Copy the full SHA c9918adView commit details -
No longer shutdown after encrypting the wallet
Since the database environment is flushed, closed, and reopened during EncryptWallet, there is no need to shut down the software anymore. Github-Pull: bitcoin#12493 Rebased-From: c1dde3a
Configuration menu - View commit details
-
Copy full SHA for 89bd447 - Browse repository at this point
Copy the full SHA 89bd447View commit details -
wallet: Add WalletLocation utility class
Github-Pull: bitcoin#14350 Rebased-From: 01a4c09
Configuration menu - View commit details
-
Copy full SHA for f7e5f6f - Browse repository at this point
Copy the full SHA f7e5f6fView commit details -
wallet: Refactor to use WalletLocation
Github-Pull: bitcoin#14350 Rebased-From: 65f3672
Configuration menu - View commit details
-
Copy full SHA for 3167021 - Browse repository at this point
Copy the full SHA 3167021View commit details -
Github-Pull: bitcoin#14320 Rebased-From: 2d796fa
Configuration menu - View commit details
-
Copy full SHA for cd29398 - Browse repository at this point
Copy the full SHA cd29398View commit details -
tests: add test case for loading copied wallet twice
Github-Pull: bitcoin#14320 Rebased-From: 4ea7732
Configuration menu - View commit details
-
Copy full SHA for 6396a64 - Browse repository at this point
Copy the full SHA 6396a64View commit details -
wallet: Add trailing wallet.dat when detecting duplicate wallet if it…
…'s a directory. Github-Pull: bitcoin#14552 Rebased-From: 15c93f0
Configuration menu - View commit details
-
Copy full SHA for 0c39627 - Browse repository at this point
Copy the full SHA 0c39627View commit details -
Refactor: Move m_db pointers into BerkeleyDatabase
This is a refactoring change that doesn't affect behavior. The motivation behind the change is give BerkeleyEnvironment objects access to BerkeleyDatabase objects so it will be possible to simplify the duplicate wallet check and more reliably avoid opening the same databases twice. Github-Pull: bitcoin#14552 Rebased-From: c456fbd
Configuration menu - View commit details
-
Copy full SHA for ccdb5ac - Browse repository at this point
Copy the full SHA ccdb5acView commit details -
wallet: Create IsDatabaseLoaded function
Github-Pull: bitcoin#14552 Rebased-From: 5912031
Configuration menu - View commit details
-
Copy full SHA for 692fc53 - Browse repository at this point
Copy the full SHA 692fc53View commit details -
Free BerkeleyEnvironment instances when not in use
Instead of adding BerkeleyEnvironment objects permanently to the g_dbenvs map, use reference counted shared pointers and remove map entries when the last BerkeleyEnvironment reference goes out of scope. This change was requested by Matt Corallo <git@bluematt.me> and makes code that sets up mock databases cleaner. The mock database environment will now go out of scope and be reset on destruction so there is no need to call BerkeleyEnvironment::Reset() during wallet construction to clear out prior state. This change does affect bitcoin behavior slightly. On startup, instead of same wallet environments staying open throughout VerifyWallets() and OpenWallets() calls, VerifyWallets() will open and close an environment once for each wallet, and OpenWallets() will create its own environment(s) later. Github-Pull: bitcoin#11911 Rebased-From: f1f4bb7
Configuration menu - View commit details
-
Copy full SHA for 3da68df - Browse repository at this point
Copy the full SHA 3da68dfView commit details -
Trivial: add doxygen-compatible comments relating to BerkeleyEnvironment
Github-Pull: bitcoin#11911 Rebased-From: 14bc2a1
Configuration menu - View commit details
-
Copy full SHA for e1ec67a - Browse repository at this point
Copy the full SHA e1ec67aView commit details -
Tests: add unit tests for GetWalletEnv
Github-Pull: bitcoin#11911 Rebased-From: 88b1d95
Configuration menu - View commit details
-
Copy full SHA for c1f7d57 - Browse repository at this point
Copy the full SHA c1f7d57View commit details -
wallet: Close dbenv error file db.log
The error file db.log is opened by BerkeleyEnvironment instance and should be closed after dbenv is closed. Github-Pull: bitcoin#15297 Rebased-From: 8602a1e
Configuration menu - View commit details
-
Copy full SHA for f509f52 - Browse repository at this point
Copy the full SHA f509f52View commit details -
wallet: Close wallet env lock file
Close .walletlock file when a BerkeleyEnvironment is deleted. Github-Pull: bitcoin#15297 Rebased-From: 2f8b8f4
Configuration menu - View commit details
-
Copy full SHA for 325f960 - Browse repository at this point
Copy the full SHA 325f960View commit details -
qa: Test .walletlock file is closed
Github-Pull: bitcoin#15297 Rebased-From: d3bf3b9
Configuration menu - View commit details
-
Copy full SHA for 3da7701 - Browse repository at this point
Copy the full SHA 3da7701View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5c4dbc9 - Browse repository at this point
Copy the full SHA 5c4dbc9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 02df1ba - Browse repository at this point
Copy the full SHA 02df1baView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3bb9ea4 - Browse repository at this point
Copy the full SHA 3bb9ea4View commit details
Commits on May 2, 2019
-
Merge pull request #10 from FxTC-Bata-development/0.17
Bata Core 0.17.1.17 release
pc888 authoredMay 2, 2019 Configuration menu - View commit details
-
Copy full SHA for 8a3ea60 - Browse repository at this point
Copy the full SHA 8a3ea60View commit details
Commits on Feb 20, 2021
-
Configuration menu - View commit details
-
Copy full SHA for f1a98f9 - Browse repository at this point
Copy the full SHA f1a98f9View commit details -
Configuration menu - View commit details
-
Copy full SHA for c6fc3a1 - Browse repository at this point
Copy the full SHA c6fc3a1View commit details
Commits on Jul 25, 2021
-
Updated URL Added coin specs with updated links. Added mining pool requirements
Configuration menu - View commit details
-
Copy full SHA for 73e92d4 - Browse repository at this point
Copy the full SHA 73e92d4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3b92f3d - Browse repository at this point
Copy the full SHA 3b92f3dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1e7b9e7 - Browse repository at this point
Copy the full SHA 1e7b9e7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 30acacd - Browse repository at this point
Copy the full SHA 30acacdView commit details -
Configuration menu - View commit details
-
Copy full SHA for d33ace0 - Browse repository at this point
Copy the full SHA d33ace0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 112a280 - Browse repository at this point
Copy the full SHA 112a280View commit details -
Configuration menu - View commit details
-
Copy full SHA for 80440b6 - Browse repository at this point
Copy the full SHA 80440b6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8578fde - Browse repository at this point
Copy the full SHA 8578fdeView commit details
Commits on Aug 13, 2021
-
Configuration menu - View commit details
-
Copy full SHA for f53538c - Browse repository at this point
Copy the full SHA f53538cView commit details
Commits on Aug 30, 2021
-
Configuration menu - View commit details
-
Copy full SHA for ebea627 - Browse repository at this point
Copy the full SHA ebea627View commit details
Commits on Sep 6, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 68404bf - Browse repository at this point
Copy the full SHA 68404bfView commit details
There are no files selected for viewing