2015-10-28 01:50:30 +03:00
|
|
|
package wallet
|
2015-11-19 01:59:07 +03:00
|
|
|
|
|
|
|
import "testing"
|
|
|
|
|
|
|
|
func createTestWallet() {
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestBasicWalletReservationWorkFlow(t *testing.T) {
|
|
|
|
// all stages
|
|
|
|
// fields on struct properly set
|
|
|
|
// funding transaction on disk
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFundingTransactiontxFees(t *testing.T) {
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFundingTransactionLockedOutputs(t *testing.T) {
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFundingTransactionCancellationFreeOutputs(t *testing.T) {
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFundingReservationInsufficientFunds(t *testing.T) {
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFundingReservationInvalidCounterpartySigs(t *testing.T) {
|
|
|
|
}
|