From 7ca0b98ec13c1a8373c1b720996caa9178ef0dd8 Mon Sep 17 00:00:00 2001 From: Shannon Appelcline Date: Wed, 5 Apr 2017 13:44:00 -0700 Subject: [PATCH] Update 4_3_Creating_a_Raw_Transaction_with_Named_Arguments.md --- 4_3_Creating_a_Raw_Transaction_with_Named_Arguments.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/4_3_Creating_a_Raw_Transaction_with_Named_Arguments.md b/4_3_Creating_a_Raw_Transaction_with_Named_Arguments.md index 05c871d..4524f95 100644 --- a/4_3_Creating_a_Raw_Transaction_with_Named_Arguments.md +++ b/4_3_Creating_a_Raw_Transaction_with_Named_Arguments.md @@ -89,3 +89,5 @@ Voila! You've sent out another raw transaction, but this time using named argume ## Summary: Creating a Raw Transaction with Named Arguments By running `bitcoin-cli` with the `-named` flag, you can use named arguments rather than depending on ordered arguments. `bitcoin-cli help` will always show you the right name for each argument. This can result in more robust, easier-to-read, less error-prone code. + +_These docs will use named arguments for all future examples, for clarity and to establish best practices. However, it will also show all arguments in the correct order. So, if you prefer not to use named args, just strip out the '-named' flag and all of the "name="s and the examples should continue to work correctly._