Skip to content

Commit 5d2fdca

Browse files
committedSep 27, 2023
comments
1 parent 8d1bd1b commit 5d2fdca

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed
 

‎bip39/bip39.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
// "BIP39 multi-language support implementation for mnemonic phrases.
2-
1+
// BIP39 multi-language support implementation for mnemonic phrases.
32
package bip39
43

54
import (

‎example/example_calculate_fee.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
1+
// Examples, of how to use the package
12
package example
23

34
import (
45
"github.com/mrtnetwork/bitcoin/address"
56
"github.com/mrtnetwork/bitcoin/provider"
67

78
"fmt"
9+
"math/big"
10+
811
"github.com/mrtnetwork/bitcoin/constant"
912
hdwallet "github.com/mrtnetwork/bitcoin/hd_wallet"
1013
"github.com/mrtnetwork/bitcoin/keypair"
11-
"math/big"
1214
)
1315

1416
/*

‎example/example_multi_sig_transaction.go

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Examples, of how to use the package
12
package example
23

34
import (

0 commit comments

Comments
 (0)
Please sign in to comment.