From 86cf4acbdc01575fba59394d41053a13407db304 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Sun, 3 Nov 2024 07:23:43 +1100 Subject: [PATCH] Move macro call During development of the v28 support we re-ordered some macro calls, so as not to hold up an external contributor with triviality I acked and merged as it was. Put the macro calls in the same order so that when one diffs `v27_api.rs` and `v28_api.rs` there are no false positives in the diff. Internal change only. --- integration_test/tests/v28_api.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration_test/tests/v28_api.rs b/integration_test/tests/v28_api.rs index 40a9f75..0dc56b4 100644 --- a/integration_test/tests/v28_api.rs +++ b/integration_test/tests/v28_api.rs @@ -8,10 +8,10 @@ use integration_test::*; mod blockchain { use super::*; - impl_test_v17__getblockchaininfo!(); impl_test_v17__getbestblockhash!(); impl_test_v17__getblock_verbosity_0!(); impl_test_v17__getblock_verbosity_1!(); + impl_test_v17__getblockchaininfo!(); } // == Control ==