renames `regtest_submit_blocks` test to avoid name collision with `submit_block` test (#8762)

This commit is contained in:
Arya 2024-08-14 07:02:29 -04:00 committed by GitHub
parent a57557625a
commit ec48599cac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -2957,7 +2957,7 @@ fn external_address() -> Result<()> {
// TODO: Test this with an NU5 activation height too once config can be serialized. // TODO: Test this with an NU5 activation height too once config can be serialized.
#[tokio::test] #[tokio::test]
#[cfg(feature = "getblocktemplate-rpcs")] #[cfg(feature = "getblocktemplate-rpcs")]
async fn regtest_submit_blocks() -> Result<()> { async fn regtest_block_templates_are_valid_block_submissions() -> Result<()> {
common::regtest::submit_blocks_test().await?; common::regtest::submit_blocks_test().await?;
Ok(()) Ok(())
} }