mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 18:10:34 +01:00
lnwallet: move stateHintTests global var into TestCommitTxStateHint
This commit is contained in:
parent
4e4375513d
commit
1a9ada4897
@ -573,13 +573,18 @@ func TestHTLCReceiverSpendValidation(t *testing.T) {
|
||||
}
|
||||
}
|
||||
|
||||
var stateHintTests = []struct {
|
||||
}
|
||||
|
||||
func TestCommitTxStateHint(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
stateHintTests := []struct {
|
||||
name string
|
||||
from uint64
|
||||
to uint64
|
||||
inputs int
|
||||
shouldFail bool
|
||||
}{
|
||||
}{
|
||||
{
|
||||
name: "states 0 to 1000",
|
||||
from: 0,
|
||||
@ -606,10 +611,7 @@ var stateHintTests = []struct {
|
||||
inputs: 2,
|
||||
shouldFail: true,
|
||||
},
|
||||
}
|
||||
|
||||
func TestCommitTxStateHint(t *testing.T) {
|
||||
t.Parallel()
|
||||
}
|
||||
|
||||
var obsfucator [StateHintSize]byte
|
||||
copy(obsfucator[:], testHdSeed[:StateHintSize])
|
||||
|
Loading…
Reference in New Issue
Block a user