[doc] Docs and copyright headers bump #8286

pull MarcoFalke wants to merge 3 commits into bitcoin:master from MarcoFalke:Mf1607-trivialPre13 changing 6 files +12 −16
  1. MarcoFalke commented at 2:20 PM on June 29, 2016: member

    No description provided.

  2. MarcoFalke added the label Docs and Output on Jun 29, 2016
  3. in README.md:None in fa1857977a outdated
      30 | @@ -31,7 +31,8 @@ The `master` branch is regularly built and tested, but is not guaranteed to be
      31 |  completely stable. [Tags](https://github.com/bitcoin/bitcoin/tags) are created
      32 |  regularly to indicate new official, stable release versions of Bitcoin Core.
      33 |  
      34 | -The contribution workflow is described in [CONTRIBUTING.md](CONTRIBUTING.md).
      35 | +The contribution workflow is described in [CONTRIBUTING.md](CONTRIBUTING.md)
      36 | +and useful hints for developers can be found in [doc/developer-notes.md](doc/developer-notes.md)
    


    paveljanik commented at 8:57 AM on July 1, 2016:

    Missing dot at the end of sentence.

  4. paveljanik commented at 9:00 AM on July 1, 2016: contributor

    ACK everything except copyright bumps.

    This PR's review time will be long...

  5. MarcoFalke commented at 9:04 AM on July 1, 2016: member

    @paveljanik You can apply the bump script in contrib/ locally and then diff with my result to see the "actual" diff.

  6. MarcoFalke force-pushed on Jul 1, 2016
  7. paveljanik commented at 9:19 AM on July 1, 2016: contributor

    The script is not portable... On OS X:

    date: illegal time format
    usage: date [-jnu] [-d dst] [-r seconds] [-t west] [-v[+|-]val[ymwdHMS]] ... 
                [-f fmt date | [[[mm]dd]HH]MM[[cc]yy][.ss]] [+format]
    

    https://github.com/bitcoin/bitcoin/blob/master/src/indirectmap.h doesn't contain copyright header at all.

  8. MarcoFalke force-pushed on Jul 1, 2016
  9. MarcoFalke commented at 10:08 AM on July 1, 2016: member

    https://github.com/bitcoin/bitcoin/blob/master/src/indirectmap.h doesn't contain copyright header at all.

    Somone would need to ask the author where it came from. Only they can chose the copyright...

  10. in contrib/debian/examples/bitcoin.conf:None in fa8a7a49d9 outdated
     105 |  #txconfirmtarget=n
     106 |  
     107 | +# Pay an optional transaction fee every time you send bitcoins.  Transactions with fees
     108 | +# are more likely than free transactions to be included in generated blocks, so may
     109 | +# be validated sooner.
     110 | +#paytxfee=0.00
    


    roques commented at 4:21 PM on July 1, 2016:

    The unit (BTC/kB) of paytxfee should be specified here, as it is in bitcoind -?. I also would completely remove the second sentence.


    MarcoFalke commented at 4:31 PM on July 1, 2016:

    Oh right. I was just moving the sentence.

    A general rewrite should be preferred.

  11. MarcoFalke force-pushed on Jul 2, 2016
  12. MarcoFalke commented at 11:00 AM on July 3, 2016: member

    @paveljanik The script is not portable...

    I changed something. It may or may not work now.

  13. MarcoFalke force-pushed on Jul 8, 2016
  14. sipa commented at 11:46 AM on July 12, 2016: member

    @kazcw wrote indirectmap

  15. jonasschnelli commented at 11:58 AM on July 12, 2016: contributor

    ACK everything except copyright bumps.

    Agree with @paveljanik

  16. MarcoFalke commented at 3:15 PM on July 12, 2016: member

    @paveljanik

    Can you try the bump script again on osx and ack the diff?

  17. paveljanik commented at 3:20 PM on July 12, 2016: contributor

    @MarcoFalke Sure, I will try to do it this week.

  18. paveljanik commented at 3:41 PM on July 12, 2016: contributor

    ACK https://github.com/bitcoin/bitcoin/pull/8286/commits/fade7e93827646e5f393af8dcbc7e1e5a9717bc9

    Fixed script contrib/devtools/fix-copyright-headers.py now works even on OS X. Thanks!

  19. in qa/pull-tester/rpc-tests.py:None in fade7e9382 outdated
      99 | -            "to run zmq tests, see dependency info in /qa/README.md.")
     100 | -        ENABLE_ZMQ=0
     101 | +    except ImportError:
     102 | +        print("ERROR: \"import zmq\" failed. Set ENABLE_ZMQ=0 or "
     103 | +              "to run zmq tests, see dependency info in /qa/README.md.")
     104 | +        # ENABLE_ZMQ=0
    


    fanquake commented at 3:06 AM on August 8, 2016:

    Why not remove this line?


    MarcoFalke commented at 5:26 AM on August 8, 2016:

    Someone catching this exception and reading this line can just uncomment it, instead of looking up how to unset zmq...

  20. in contrib/debian/examples/bitcoin.conf:None in fade7e9382 outdated
     105 | +# Create transactions that have enough fees so they are likely to begin confirmation within n blocks.
     106 |  # This setting is over-ridden by the -paytxfee option.
     107 |  #txconfirmtarget=n
     108 |  
     109 | +# Pay a transaction fee every time you send bitcoins.
     110 | +#paytxfee=0.000x
    


    jonasschnelli commented at 8:15 AM on August 8, 2016:

    Maybe mention that this is per KB?


    MarcoFalke commented at 8:25 AM on August 8, 2016:

    All fees exposed via the user interface are BTC per kB (or mBTC per Byte). I don't think it adds value to mention it everywhere.


    MarcoFalke commented at 8:27 AM on August 8, 2016:

    But I agree, somehow this whole examples/bitcoin.conf file needs update. Though, someone should do it in a later pull, I guess.

  21. in qa/rpc-tests/bip68-112-113-p2p.py:None in fade7e9382 outdated
       0 | @@ -1,5 +1,5 @@
       1 |  #!/usr/bin/env python3
       2 | -# Copyright (c) 2015 The Bitcoin Core developers
       3 | +# Copyright (c) 2015-2016 The Bitcoin Core developers
    


    jonasschnelli commented at 8:17 AM on August 8, 2016:

    Has this been changed in 2016? nm: I think so.

  22. MarcoFalke force-pushed on Aug 17, 2016
  23. MarcoFalke force-pushed on Aug 17, 2016
  24. MarcoFalke force-pushed on Aug 17, 2016
  25. MarcoFalke force-pushed on Aug 22, 2016
  26. MarcoFalke renamed this:
    [doc] typos, READMEs, comments, headers
    [contrib] conf: Remove sendfreetransactions (debug option)
    on Aug 28, 2016
  27. MarcoFalke renamed this:
    [contrib] conf: Remove sendfreetransactions (debug option)
    [doc] Docs and copyright headers bump
    on Aug 28, 2016
  28. MarcoFalke force-pushed on Sep 20, 2016
  29. Bump copyright headers c1ce8114ab
  30. Link to developer notes in README.md 2d28318c72
  31. [contrib] conf: Remove sendfreetransactions (debug option) 2a064e5474
  32. MarcoFalke force-pushed on Sep 20, 2016
  33. MarcoFalke closed this on Sep 20, 2016

  34. MarcoFalke deleted the branch on Sep 20, 2016
  35. MarcoFalke locked this on Sep 8, 2021

github-metadata-mirror

This is a metadata mirror of the GitHub repository bitcoin/bitcoin. This site is not affiliated with GitHub. Content is generated from a GitHub metadata backup.
generated: 2026-04-17 06:15 UTC

This site is hosted by @0xB10C
More mirrored repositories can be found on mirror.b10c.me