resulttypes.go raw

   1  package wallet
   2  
   3  //
   4  // import (
   5  // 	"github.com/p9c/p9/pkg/btcjson"
   6  // )
   7  //
   8  // // errors are returned as *btcjson.RPCError type
   9  // type (
  10  // 	None                   struct{}
  11  // 	AddMultiSigAddressRes struct {
  12  // 		e error
  13  // 		Res string
  14  // 	}
  15  // 	CreateMultiSigRes struct {
  16  // 		e error
  17  // 		Res btcjson.CreateMultiSigResult
  18  // 	}
  19  // 	DumpPrivKeyRes struct {
  20  // 		e error
  21  // 		Res string
  22  // 	}
  23  // 	GetAccountRes struct {
  24  // 		e error
  25  // 		Res string
  26  // 	}
  27  // 	GetAccountAddressRes struct {
  28  // 		e error
  29  // 		Res string
  30  // 	}
  31  // 	GetAddressesByAccountRes struct {
  32  // 		e error
  33  // 		Res []string
  34  // 	}
  35  // 	GetBalanceRes struct {
  36  // 		e error
  37  // 		Res float64
  38  // 	}
  39  // 	GetBestBlockHashRes struct {
  40  // 		e error
  41  // 		Res string
  42  // 	}
  43  // 	GetBlockCountRes struct {
  44  // 		e error
  45  // 		Res int32
  46  // 	}
  47  // 	GetInfoRes struct {
  48  // 		e error
  49  // 		Res btcjson.InfoWalletResult
  50  // 	}
  51  // 	GetNewAddressRes struct {
  52  // 		e error
  53  // 		Res string
  54  // 	}
  55  // 	GetRawChangeAddressRes struct {
  56  // 		e error
  57  // 		Res string
  58  // 	}
  59  // 	GetReceivedByAccountRes struct {
  60  // 		e error
  61  // 		Res float64
  62  // 	}
  63  // 	GetReceivedByAddressRes struct {
  64  // 		e error
  65  // 		Res float64
  66  // 	}
  67  // 	GetTransactionRes struct {
  68  // 		e error
  69  // 		Res btcjson.GetTransactionResult
  70  // 	}
  71  // 	HelpWithChainRPCRes struct {
  72  // 		e error
  73  // 		Res string
  74  // 	}
  75  // 	HelpNoChainRPCRes struct {
  76  // 		e error
  77  // 		Res string
  78  // 	}
  79  // 	ImportPrivKeyRes struct {
  80  // 		e error
  81  // 		Res None
  82  // 	}
  83  // 	KeypoolRefillRes struct {
  84  // 		e error
  85  // 		Res None
  86  // 	}
  87  // 	ListAccountsRes struct {
  88  // 		e error
  89  // 		Res map[string]float64
  90  // 	}
  91  // 	ListLockUnspentRes struct {
  92  // 		e error
  93  // 		Res []btcjson.TransactionInput
  94  // 	}
  95  // 	ListReceivedByAccountRes struct {
  96  // 		e error
  97  // 		Res []btcjson.ListReceivedByAccountResult
  98  // 	}
  99  // 	ListReceivedByAddressRes struct {
 100  // 		e error
 101  // 		Res btcjson.ListReceivedByAddressResult
 102  // 	}
 103  // 	ListSinceBlockRes struct {
 104  // 		e error
 105  // 		Res btcjson.ListSinceBlockResult
 106  // 	}
 107  // 	ListTransactionsRes struct {
 108  // 		e error
 109  // 		Res []btcjson.ListTransactionsResult
 110  // 	}
 111  // 	ListUnspentRes struct {
 112  // 		e error
 113  // 		Res []btcjson.ListUnspentResult
 114  // 	}
 115  // 	LockUnspentRes struct {
 116  // 		e error
 117  // 		Res bool
 118  // 	}
 119  // 	SendFromRes struct {
 120  // 		e error
 121  // 		Res string
 122  // 	}
 123  // 	SendManyRes struct {
 124  // 		e error
 125  // 		Res string
 126  // 	}
 127  // 	SendToAddressRes struct {
 128  // 		e error
 129  // 		Res string
 130  // 	}
 131  // 	SetTxFeeRes struct {
 132  // 		e error
 133  // 		Res bool
 134  // 	}
 135  // 	SignMessageRes struct {
 136  // 		e error
 137  // 		Res string
 138  // 	}
 139  // 	SignRawTransactionRes struct {
 140  // 		e error
 141  // 		Res btcjson.SignRawTransactionResult
 142  // 	}
 143  // 	ValidateAddressRes struct {
 144  // 		e error
 145  // 		Res btcjson.ValidateAddressWalletResult
 146  // 	}
 147  // 	VerifyMessageRes struct {
 148  // 		e error
 149  // 		Res bool
 150  // 	}
 151  // 	WalletLockRes struct {
 152  // 		e error
 153  // 		Res None
 154  // 	}
 155  // 	WalletPassphraseRes struct {
 156  // 		e error
 157  // 		Res None
 158  // 	}
 159  // 	WalletPassphraseChangeRes struct {
 160  // 		e error
 161  // 		Res None
 162  // 	}
 163  // 	CreateNewAccountRes struct {
 164  // 		e error
 165  // 		Res None
 166  // 	}
 167  // 	GetBestBlockRes struct {
 168  // 		e error
 169  // 		Res btcjson.GetBestBlockResult
 170  // 	}
 171  // 	GetUnconfirmedBalanceRes struct {
 172  // 		e error
 173  // 		Res float64
 174  // 	}
 175  // 	ListAddressTransactionsRes struct {
 176  // 		e error
 177  // 		Res []btcjson.ListTransactionsResult
 178  // 	}
 179  // 	ListAllTransactionsRes struct {
 180  // 		e error
 181  // 		Res []btcjson.ListTransactionsResult
 182  // 	}
 183  // 	RenameAccountRes struct {
 184  // 		e error
 185  // 		Res None
 186  // 	}
 187  // 	WalletIsLockedRes struct {
 188  // 		e error
 189  // 		Res bool
 190  // 	}
 191  // 	DropWalletHistoryRes struct {
 192  // 		e error
 193  // 		Res string
 194  // 	}
 195  // )
 196