Skip to content

Commit 20f6a15

Browse files
committed
Fix small typos
Signed-off-by: Igor Gunia <[email protected]>
1 parent f5816df commit 20f6a15

File tree

3 files changed

+5
-12
lines changed

3 files changed

+5
-12
lines changed

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ e-mail address (with the @ part replaced by .) using -m.
4141
DOWNLOADING
4242
-----------
4343

44-
$ git clone https://github.com/vmta/umkoin-seeder.git
44+
$ git clone https://github.com/umkoin/umkoin-seeder.git
4545

4646
COMPILING
4747
---------
@@ -69,4 +69,4 @@ CREDITS
6969
-------
7070

7171
Umkoin-seeder is a direct fork of Pieter Wuille's Bitcoin-seeder, which is
72-
available at <https://github.com/sipa/bitcoin-seeder.git>
72+
available at <https://github.com/sipa/bitcoin-seeder.git>

Diff for: releases/dnsseed

0 Bytes
Binary file not shown.

Diff for: uint256.h

+3-10
Original file line numberDiff line numberDiff line change
@@ -624,15 +624,6 @@ inline const uint256 operator-(const uint256& a, const uint256& b) { return
624624

625625

626626

627-
628-
629-
630-
631-
632-
633-
634-
635-
636627
inline int Testuint256AdHoc(std::vector<std::string> vArg)
637628
{
638629
uint256 g(0);
@@ -716,7 +707,9 @@ inline int Testuint256AdHoc(std::vector<std::string> vArg)
716707
d = a;
717708

718709
printf("%s\n", d.ToString().c_str());
719-
for (int i = uint256::WIDTH-1; i >= 0; i--) printf("%08x", d.pn[i]); printf("\n");
710+
for (int i = uint256::WIDTH-1; i >= 0; i--)
711+
printf("%08x", d.pn[i]);
712+
printf("\n");
720713

721714
uint256 neg = d;
722715
neg = ~neg;

0 commit comments

Comments
 (0)