mirror of
https://github.com/lightningnetwork/lnd.git
synced 2026-08-20 13:27:27 +02:00
keychain: add basic benchmark for privkey derivation
This commit is contained in:
parent
93d12cd9fc
commit
df11b0fed0
1 changed files with 41 additions and 0 deletions
41
keychain/bench_test.go
Normal file
41
keychain/bench_test.go
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
package keychain
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/btcsuite/btcd/btcec"
|
||||
"github.com/stretchr/testify/require"
|
||||
)
|
||||
|
||||
func BenchmarkDerivePrivKey(t *testing.B) {
|
||||
cleanUp, wallet, err := createTestBtcWallet(
|
||||
CoinTypeBitcoin,
|
||||
)
|
||||
if err != nil {
|
||||
t.Fatalf("unable to create wallet: %v", err)
|
||||
}
|
||||
|
||||
keyRing := NewBtcWalletKeyRing(wallet, CoinTypeBitcoin)
|
||||
|
||||
defer cleanUp()
|
||||
|
||||
var (
|
||||
privKey *btcec.PrivateKey
|
||||
)
|
||||
|
||||
keyDesc := KeyDescriptor{
|
||||
KeyLocator: KeyLocator{
|
||||
Family: KeyFamilyMultiSig,
|
||||
Index: 1,
|
||||
},
|
||||
}
|
||||
|
||||
t.ReportAllocs()
|
||||
t.ResetTimer()
|
||||
|
||||
for i := 0; i < t.N; i++ {
|
||||
privKey, err = keyRing.DerivePrivKey(keyDesc)
|
||||
}
|
||||
require.NoError(t, err)
|
||||
require.NotNil(t, privKey)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue