Skip to content

Commit 12a20c5

Browse files
Copyright notices and default tx files.
1 parent d0cb396 commit 12a20c5

File tree

4 files changed

+6
-19
lines changed

4 files changed

+6
-19
lines changed

getPublicKey.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
#!/usr/bin/env python3
22
"""
33
/*******************************************************************************
4-
* Taras Shchybovyk
5-
* (c) 2018 Taras Shchybovyk
4+
* Copyright of the Contributing Authors; see CONTRIBUTORS.md.
65
*
76
* Licensed under the Apache License, Version 2.0 (the "License");
87
* you may not use this file except in compliance with the License.

signSerialTransaction.py

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,7 @@
11
#!/usr/bin/env python3
22
"""
33
/*******************************************************************************
4-
*
5-
* This file is a derivative work, and contains modifications from original
6-
* form. The modifications are copyright of their respective contributors,
7-
* and are licensed under the same terms as the original work.
8-
*
9-
* Portions Copyright (c) 2018 Christopher J. Sanborn
10-
*
11-
* Original copyright and license notice follows:
12-
*
13-
* Taras Shchybovyk
14-
* (c) 2018 Taras Shchybovyk
4+
* Copyright of the Contributing Authors; see CONTRIBUTORS.md.
155
*
166
* Licensed under the Apache License, Version 2.0 (the "License");
177
* you may not use this file except in compliance with the License.
@@ -63,7 +53,7 @@ def parse_bip32_path(path):
6353
args.path = "48'/1'/1'/0'/0'"
6454

6555
if args.file is None:
66-
args.file = 'transaction.hex'
56+
args.file = 'example-tx/tx_transfer.derhex'
6757

6858
if not os.path.isfile(args.file):
6959
parser.print_help()

signTransaction.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
#!/usr/bin/env python3
22
"""
33
/*******************************************************************************
4-
* Taras Shchybovyk
5-
* (c) 2018 Taras Shchybovyk
4+
* Copyright of the Contributing Authors; see CONTRIBUTORS.md.
65
*
76
* Licensed under the Apache License, Version 2.0 (the "License");
87
* you may not use this file except in compliance with the License.
@@ -70,7 +69,7 @@ def encode(chain_id, tx):
7069
args.path = "48'/1'/1'/0'/0'"
7170

7271
if args.file is None:
73-
args.file = 'bts_transaction_transfer_usd_with_memo.json'
72+
args.file = 'example-tx/tx_transfer.json'
7473

7574
donglePath = parse_bip32_path(args.path)
7675
pathSize = int(len(donglePath) / 4)

testDerivationPathGeneration.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
#!/usr/bin/env python3
22
"""
33
/*******************************************************************************
4-
* Taras Shchybovyk
5-
* (c) 2018 Taras Shchybovyk
4+
* Copyright of the Contributing Authors; see CONTRIBUTORS.md.
65
*
76
* Licensed under the Apache License, Version 2.0 (the "License");
87
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)