-
Notifications
You must be signed in to change notification settings - Fork 67
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
Get genesis timestamp from bitcoind #957
Merged
darosior
merged 1 commit into
wizardsardine:master
from
pythcoiner:genesis_timestamp_from_bitcoind
Mar 9, 2024
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
|
||
def test_getinfo(lianad): | ||
res = lianad.rpc.getinfo() | ||
assert 'timestamp' in res.keys() | ||
assert "timestamp" in res.keys() | ||
assert res["version"] == "4.0.0-dev" | ||
assert res["network"] == "regtest" | ||
wait_for(lambda: lianad.rpc.getinfo()["block_height"] == 101) | ||
|
@@ -599,10 +599,15 @@ def all_spent(coins): | |
with pytest.raises(RpcError, match="Insane timestamp.*"): | ||
lianad.rpc.startrescan(future_timestamp) | ||
assert lianad.rpc.getinfo()["rescan_progress"] is None | ||
prebitcoin_timestamp = 1231006505 - 1 | ||
block_hash = bitcoind.rpc.getblockhash(0) | ||
genesis_timestamp = bitcoind.rpc.getblock(block_hash)["time"] | ||
prebitcoin_timestamp = genesis_timestamp - 1 | ||
with pytest.raises(RpcError, match="Insane timestamp."): | ||
lianad.rpc.startrescan(prebitcoin_timestamp) | ||
pythcoiner marked this conversation as resolved.
Show resolved
Hide resolved
|
||
assert lianad.rpc.getinfo()["rescan_progress"] is None | ||
# we can rescan from genesis block | ||
lianad.rpc.startrescan(genesis_timestamp) | ||
wait_for(lambda: lianad.rpc.getinfo()["rescan_progress"] is None) | ||
|
||
# First, get some coins | ||
for _ in range(10): | ||
|
@@ -1232,9 +1237,7 @@ def test_rbfpsbt_cancel(lianad, bitcoind): | |
# But we can't set the feerate explicitly. | ||
with pytest.raises( | ||
RpcError, | ||
match=re.escape( | ||
"A feerate must not be provided if creating a cancel." | ||
), | ||
match=re.escape("A feerate must not be provided if creating a cancel."), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. black doing his job |
||
): | ||
rbf_1_res = lianad.rpc.rbfpsbt(first_txid, True, 2) | ||
rbf_1_psbt = PSBT.from_base64(rbf_1_res["psbt"]) | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
black doing is job here