fix attributes for compiler changes

This commit is contained in:
Andrew Poelstra 2015-03-26 10:31:19 -05:00
parent 2101e4a56d
commit df065c143b
19 changed files with 50 additions and 53 deletions

View File

@ -32,7 +32,7 @@ use blockdata::transaction::Transaction;
/// A block header, which contains all the block's information except /// A block header, which contains all the block's information except
/// the actual transactions /// the actual transactions
#[deriving(PartialEq, Eq, Clone, Show)] #[derive(PartialEq, Eq, Clone, Show)]
pub struct BlockHeader { pub struct BlockHeader {
/// The protocol version. Should always be 1. /// The protocol version. Should always be 1.
pub version: u32, pub version: u32,
@ -51,7 +51,7 @@ pub struct BlockHeader {
/// A Bitcoin block, which is a collection of transactions with an attached /// A Bitcoin block, which is a collection of transactions with an attached
/// proof of work. /// proof of work.
#[deriving(PartialEq, Eq, Clone, Show)] #[derive(PartialEq, Eq, Clone, Show)]
pub struct Block { pub struct Block {
/// The block header /// The block header
pub header: BlockHeader, pub header: BlockHeader,
@ -61,7 +61,7 @@ pub struct Block {
/// A block header with txcount attached, which is given in the `headers` /// A block header with txcount attached, which is given in the `headers`
/// network message. /// network message.
#[deriving(PartialEq, Eq, Clone, Show)] #[derive(PartialEq, Eq, Clone, Show)]
pub struct LoneBlockHeader { pub struct LoneBlockHeader {
/// The actual block header /// The actual block header
pub header: BlockHeader, pub header: BlockHeader,

View File

@ -38,7 +38,7 @@ pub mod all {
// write an #[inline] helper function which casts to u8s. // write an #[inline] helper function which casts to u8s.
/// A script Opcode /// A script Opcode
#[deriving(Clone, PartialEq, Eq, Show)] #[derive(Clone, PartialEq, Eq, Show)]
#[repr(u8)] #[repr(u8)]
pub enum Opcode { pub enum Opcode {
/// Push an empty array onto the stack /// Push an empty array onto the stack
@ -632,7 +632,7 @@ pub mod all {
} }
/// Broad categories of opcodes with similar behavior /// Broad categories of opcodes with similar behavior
#[deriving(Clone, PartialEq, Eq, Show)] #[derive(Clone, PartialEq, Eq, Show)]
pub enum OpcodeClass { pub enum OpcodeClass {
/// Pushes the given number onto the stack /// Pushes the given number onto the stack
PushNum(isize), PushNum(isize),
@ -658,7 +658,7 @@ macro_rules! ordinary_opcode {
($($op:ident),*) => ( ($($op:ident),*) => (
#[repr(u8)] #[repr(u8)]
#[doc(hidden)] #[doc(hidden)]
#[deriving(Clone, PartialEq, Eq, Show)] #[derive(Clone, PartialEq, Eq, Show)]
pub enum Opcode { pub enum Opcode {
$( $op = all::$op as u8 ),* $( $op = all::$op as u8 ),*
} }

View File

@ -48,7 +48,7 @@ use util::hash::Sha256dHash;
use util::misc::script_find_and_remove; use util::misc::script_find_and_remove;
use util::thinvec::ThinVec; use util::thinvec::ThinVec;
#[deriving(PartialEq, Eq, Show, Clone)] #[derive(PartialEq, Eq, Show, Clone)]
/// A Bitcoin script /// A Bitcoin script
pub struct Script(ThinVec<u8>); pub struct Script(ThinVec<u8>);
@ -63,7 +63,7 @@ impl<S: hash::Writer> hash::Hash<S> for Script {
/// Ways that a script might fail. Not everything is split up as /// Ways that a script might fail. Not everything is split up as
/// much as it could be; patches welcome if more detailed errors /// much as it could be; patches welcome if more detailed errors
/// would help you. /// would help you.
#[deriving(PartialEq, Eq, Show, Clone)] #[derive(PartialEq, Eq, Show, Clone)]
pub enum ScriptError { pub enum ScriptError {
/// The script returns false no matter the input /// The script returns false no matter the input
AnalyzeAlwaysReturnsFalse, AnalyzeAlwaysReturnsFalse,
@ -721,7 +721,7 @@ fn update_op_checksig(elem: &mut AbstractStackElem, others: &[usize])
/// An abstract element on the stack, used to describe a satisfying /// An abstract element on the stack, used to describe a satisfying
/// script input /// script input
#[deriving(Clone)] #[derive(Clone)]
pub struct AbstractStackElem { pub struct AbstractStackElem {
/// The raw data, if known /// The raw data, if known
raw: Option<Vec<u8>>, raw: Option<Vec<u8>>,
@ -1040,7 +1040,7 @@ impl AbstractStackElem {
/// The stack used by the script satisfier /// The stack used by the script satisfier
#[deriving(Clone)] #[derive(Clone)]
pub struct AbstractStack { pub struct AbstractStack {
/// Actual elements on the stack /// Actual elements on the stack
stack: Vec<usize>, stack: Vec<usize>,
@ -1204,7 +1204,7 @@ impl json::ToJson for ScriptError {
} }
/// A single iteration of a script execution /// A single iteration of a script execution
#[deriving(PartialEq, Eq, Show, Clone)] #[derive(PartialEq, Eq, Show, Clone)]
pub struct TraceIteration { pub struct TraceIteration {
index: usize, index: usize,
op_count: usize, op_count: usize,
@ -1216,7 +1216,7 @@ pub struct TraceIteration {
} }
/// A full trace of a script execution /// A full trace of a script execution
#[deriving(PartialEq, Eq, Show, Clone)] #[derive(PartialEq, Eq, Show, Clone)]
pub struct ScriptTrace { pub struct ScriptTrace {
/// A copy of the script /// A copy of the script
pub script: Script, pub script: Script,
@ -1232,7 +1232,7 @@ impl_json!(TraceIteration, index, opcode, op_count, executed, errored, effect, s
/// Hashtype of a transaction, encoded in the last byte of a signature, /// Hashtype of a transaction, encoded in the last byte of a signature,
/// specifically in the last 5 bits `byte & 31` /// specifically in the last 5 bits `byte & 31`
#[deriving(PartialEq, Eq, Show, Clone)] #[derive(PartialEq, Eq, Show, Clone)]
pub enum SignatureHashType { pub enum SignatureHashType {
/// 0x1: Sign all outputs /// 0x1: Sign all outputs
SigHashAll, SigHashAll,
@ -1264,7 +1264,7 @@ impl SignatureHashType {
} }
/// A structure that can hold either a slice or vector, as necessary /// A structure that can hold either a slice or vector, as necessary
#[deriving(Clone, Show)] #[derive(Clone, Show)]
pub enum MaybeOwned<'a> { pub enum MaybeOwned<'a> {
/// Freshly allocated memory /// Freshly allocated memory
Owned(Vec<u8>), Owned(Vec<u8>),

View File

@ -35,7 +35,7 @@ use network::constants::Network;
use wallet::address::Address; use wallet::address::Address;
/// A transaction input, which defines old coins to be consumed /// A transaction input, which defines old coins to be consumed
#[deriving(Clone, PartialEq, Eq, Show)] #[derive(Clone, PartialEq, Eq, Show)]
pub struct TxIn { pub struct TxIn {
/// The hash of the transaction whose output is being used an an input /// The hash of the transaction whose output is being used an an input
pub prev_hash: Sha256dHash, pub prev_hash: Sha256dHash,
@ -52,7 +52,7 @@ pub struct TxIn {
} }
/// A transaction output, which defines new coins to be created from old ones. /// A transaction output, which defines new coins to be created from old ones.
#[deriving(Clone, PartialEq, Eq, Show)] #[derive(Clone, PartialEq, Eq, Show)]
pub struct TxOut { pub struct TxOut {
/// The value of the output, in satoshis /// The value of the output, in satoshis
pub value: u64, pub value: u64,
@ -89,7 +89,7 @@ impl TxOut {
} }
/// A Bitcoin transaction, which describes an authenticated movement of coins /// A Bitcoin transaction, which describes an authenticated movement of coins
#[deriving(Clone, PartialEq, Eq, Show)] #[derive(Clone, PartialEq, Eq, Show)]
pub struct Transaction { pub struct Transaction {
/// The protocol version, should always be 1. /// The protocol version, should always be 1.
pub version: u32, pub version: u32,
@ -103,7 +103,7 @@ pub struct Transaction {
} }
/// A transaction error /// A transaction error
#[deriving(PartialEq, Eq, Clone, Show)] #[derive(PartialEq, Eq, Clone, Show)]
pub enum TransactionError { pub enum TransactionError {
/// Concatenated script failed in the input half (script error) /// Concatenated script failed in the input half (script error)
InputScriptFailure(ScriptError), InputScriptFailure(ScriptError),
@ -130,7 +130,7 @@ impl json::ToJson for TransactionError {
} }
/// A trace of a transaction input's script execution /// A trace of a transaction input's script execution
#[deriving(PartialEq, Eq, Clone, Show)] #[derive(PartialEq, Eq, Clone, Show)]
pub struct InputTrace { pub struct InputTrace {
input_txid: Sha256dHash, input_txid: Sha256dHash,
input_vout: usize, input_vout: usize,
@ -145,7 +145,7 @@ impl_json!(InputTrace, input_txid, input_vout, sig_trace,
pubkey_trace, p2sh_trace, error); pubkey_trace, p2sh_trace, error);
/// A trace of a transaction's execution /// A trace of a transaction's execution
#[deriving(PartialEq, Eq, Clone, Show)] #[derive(PartialEq, Eq, Clone, Show)]
pub struct TransactionTrace { pub struct TransactionTrace {
txid: Sha256dHash, txid: Sha256dHash,
inputs: Vec<InputTrace> inputs: Vec<InputTrace>

View File

@ -36,7 +36,7 @@ use util::hash::{DumbHasher, Sha256dHash};
use util::thinvec::ThinVec; use util::thinvec::ThinVec;
/// The amount of validation to do when updating the UTXO set /// The amount of validation to do when updating the UTXO set
#[deriving(PartialEq, Eq, PartialOrd, Ord, Clone, Show)] #[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Show)]
pub enum ValidationLevel { pub enum ValidationLevel {
/// Blindly update the UTXO set (NOT recommended) /// Blindly update the UTXO set (NOT recommended)
NoValidation, NoValidation,
@ -49,7 +49,7 @@ pub enum ValidationLevel {
} }
/// An error returned from a UTXO set operation /// An error returned from a UTXO set operation
#[deriving(PartialEq, Eq, Clone, Show)] #[derive(PartialEq, Eq, Clone, Show)]
pub enum UtxoSetError { pub enum UtxoSetError {
/// prevhash of the new block is not the hash of the old block (expected, actual) /// prevhash of the new block is not the hash of the old block (expected, actual)
BadPrevHash(Sha256dHash, Sha256dHash), BadPrevHash(Sha256dHash, Sha256dHash),

View File

@ -33,9 +33,6 @@
#![feature(unboxed_closure_sugar)] #![feature(unboxed_closure_sugar)]
#![feature(unboxed_closures)] #![feature(unboxed_closures)]
#![comment = "Rust Bitcoin Library"]
#![license = "CC0"]
// Coding conventions // Coding conventions
#![warn(non_uppercase_statics)] #![warn(non_uppercase_statics)]
#![deny(non_camel_case_types)] #![deny(non_camel_case_types)]

View File

@ -22,7 +22,7 @@ use network::encodable::{ConsensusDecodable, ConsensusEncodable};
use network::serialize::{SimpleEncoder, SimpleDecoder}; use network::serialize::{SimpleEncoder, SimpleDecoder};
user_enum! { user_enum! {
#[deriving(PartialEq, Eq, Clone, Hash)] #[derive(PartialEq, Eq, Clone, Hash)]
#[doc="The cryptocurrency to act on"] #[doc="The cryptocurrency to act on"]
pub enum Network { pub enum Network {
#[doc="Classic Bitcoin"] #[doc="Classic Bitcoin"]

View File

@ -51,11 +51,11 @@ pub trait ConsensusDecodable<D:SimpleDecoder<E>, E> {
} }
/// A variable-length unsigned integer /// A variable-length unsigned integer
#[deriving(PartialEq, Eq, PartialOrd, Ord, Clone, Show)] #[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Show)]
pub struct VarInt(pub u64); pub struct VarInt(pub u64);
/// Data which must be preceded by a 4-byte checksum /// Data which must be preceded by a 4-byte checksum
#[deriving(PartialEq, Eq, Clone, Show)] #[derive(PartialEq, Eq, Clone, Show)]
pub struct CheckedData(pub Vec<u8>); pub struct CheckedData(pub Vec<u8>);
// Primitive types // Primitive types

View File

@ -34,7 +34,7 @@ use network::serialize::{serialize, RawDecoder, SimpleEncoder, SimpleDecoder};
use util::misc::prepend_err; use util::misc::prepend_err;
/// Serializer for command string /// Serializer for command string
#[deriving(PartialEq, Eq, Clone, Show)] #[derive(PartialEq, Eq, Clone, Show)]
pub struct CommandString(pub String); pub struct CommandString(pub String);
impl<S:SimpleEncoder<E>, E> ConsensusEncodable<S, E> for CommandString { impl<S:SimpleEncoder<E>, E> ConsensusEncodable<S, E> for CommandString {
@ -72,7 +72,7 @@ pub enum SocketResponse {
ConnectionFailed(IoError, Sender<()>) ConnectionFailed(IoError, Sender<()>)
} }
#[deriving(Clone, PartialEq, Eq, Show)] #[derive(Clone, PartialEq, Eq, Show)]
/// A Network message payload. Proper documentation is available on the Bitcoin /// A Network message payload. Proper documentation is available on the Bitcoin
/// wiki https://en.bitcoin.it/wiki/Protocol_specification /// wiki https://en.bitcoin.it/wiki/Protocol_specification
pub enum NetworkMessage { pub enum NetworkMessage {

View File

@ -23,7 +23,7 @@ use network::encodable::{ConsensusDecodable, ConsensusEncodable};
use network::serialize::{SimpleDecoder, SimpleEncoder}; use network::serialize::{SimpleDecoder, SimpleEncoder};
use util::hash::Sha256dHash; use util::hash::Sha256dHash;
#[deriving(PartialEq, Eq, Clone, Show)] #[derive(PartialEq, Eq, Clone, Show)]
/// The type of an inventory object /// The type of an inventory object
pub enum InvType { pub enum InvType {
/// Error --- these inventories can be ignored /// Error --- these inventories can be ignored
@ -37,7 +37,7 @@ pub enum InvType {
// Some simple messages // Some simple messages
/// The `getblocks` message /// The `getblocks` message
#[deriving(PartialEq, Eq, Clone, Show)] #[derive(PartialEq, Eq, Clone, Show)]
pub struct GetBlocksMessage { pub struct GetBlocksMessage {
/// The protocol version /// The protocol version
pub version: u32, pub version: u32,
@ -50,7 +50,7 @@ pub struct GetBlocksMessage {
} }
/// The `getheaders` message /// The `getheaders` message
#[deriving(PartialEq, Eq, Clone, Show)] #[derive(PartialEq, Eq, Clone, Show)]
pub struct GetHeadersMessage { pub struct GetHeadersMessage {
/// The protocol version /// The protocol version
pub version: u32, pub version: u32,
@ -63,7 +63,7 @@ pub struct GetHeadersMessage {
} }
/// An inventory object --- a reference to a Bitcoin object /// An inventory object --- a reference to a Bitcoin object
#[deriving(PartialEq, Eq, Clone, Show)] #[derive(PartialEq, Eq, Clone, Show)]
pub struct Inventory { pub struct Inventory {
/// The type of object that is referenced /// The type of object that is referenced
pub inv_type: InvType, pub inv_type: InvType,

View File

@ -27,7 +27,7 @@ use network::socket::Socket;
/// Some simple messages /// Some simple messages
/// The `version` message /// The `version` message
#[deriving(PartialEq, Eq, Clone, Show)] #[derive(PartialEq, Eq, Clone, Show)]
pub struct VersionMessage { pub struct VersionMessage {
/// The P2P network protocol version /// The P2P network protocol version
pub version: u32, pub version: u32,

View File

@ -49,7 +49,7 @@ fn ipaddr_to_bitcoin_addr(ipaddr: &ip::IpAddr) -> [u8; 16] {
} }
/// A network socket along with information about the peer /// A network socket along with information about the peer
#[deriving(Clone)] #[derive(Clone)]
pub struct Socket { pub struct Socket {
/// The underlying socket, which is only used directly to (a) get /// The underlying socket, which is only used directly to (a) get
/// information about the socket, and (b) to close down the socket, /// information about the socket, and (b) to close down the socket,

View File

@ -21,7 +21,7 @@ use util::thinvec::ThinVec;
use util::hash::Sha256dHash; use util::hash::Sha256dHash;
/// An error that might occur during base58 decoding /// An error that might occur during base58 decoding
#[deriving(Show, PartialEq, Eq, Clone)] #[derive(Show, PartialEq, Eq, Clone)]
pub enum Base58Error { pub enum Base58Error {
/// Invalid character encountered /// Invalid character encountered
BadByte(u8), BadByte(u8),

View File

@ -22,7 +22,7 @@ use std::io::IoError;
pub type BitcoinResult<T> = Result<T, BitcoinError>; pub type BitcoinResult<T> = Result<T, BitcoinError>;
/// A general error code /// A general error code
#[deriving(PartialEq, Eq, Show, Clone)] #[derive(PartialEq, Eq, Show, Clone)]
pub enum BitcoinError { pub enum BitcoinError {
/// An I/O error /// An I/O error
InputOutput(IoError), InputOutput(IoError),

View File

@ -50,22 +50,22 @@ impl_array_newtype!(Ripemd160Hash, u8, 20);
/// A "hasher" which just truncates and adds data to its state. Should /// A "hasher" which just truncates and adds data to its state. Should
/// only be used for hashtables indexed by "already random" data such /// only be used for hashtables indexed by "already random" data such
/// as SHA2 hashes /// as SHA2 hashes
#[deriving(Clone, PartialEq, Eq, Show)] #[derive(Clone, PartialEq, Eq, Show)]
pub struct DumbHasher; pub struct DumbHasher;
/// The state of a `DumbHasher` /// The state of a `DumbHasher`
pub struct DumbHasherState([u8; 8]); pub struct DumbHasherState([u8; 8]);
/// A 32-bit hash obtained by truncating a real hash /// A 32-bit hash obtained by truncating a real hash
#[deriving(Clone, PartialEq, Eq, Show)] #[derive(Clone, PartialEq, Eq, Show)]
pub struct Hash32((u8, u8, u8, u8)); pub struct Hash32((u8, u8, u8, u8));
/// A 48-bit hash obtained by truncating a real hash /// A 48-bit hash obtained by truncating a real hash
#[deriving(Clone, PartialEq, Eq, Show)] #[derive(Clone, PartialEq, Eq, Show)]
pub struct Hash48((u8, u8, u8, u8, u8, u8)); pub struct Hash48((u8, u8, u8, u8, u8, u8));
/// A 64-bit hash obtained by truncating a real hash /// A 64-bit hash obtained by truncating a real hash
#[deriving(Clone, PartialEq, Eq, Show)] #[derive(Clone, PartialEq, Eq, Show)]
pub struct Hash64((u8, u8, u8, u8, u8, u8, u8, u8)); pub struct Hash64((u8, u8, u8, u8, u8, u8, u8, u8));

View File

@ -27,7 +27,7 @@ use util::hash::Ripemd160Hash;
use util::base58::Base58Error::{self, InvalidLength, InvalidVersion}; use util::base58::Base58Error::{self, InvalidLength, InvalidVersion};
use util::base58::{FromBase58, ToBase58}; use util::base58::{FromBase58, ToBase58};
#[deriving(Clone, PartialEq, Eq)] #[derive(Clone, PartialEq, Eq)]
/// A Bitcoin address /// A Bitcoin address
pub struct Address { pub struct Address {
/// The network on which this address is usable /// The network on which this address is usable

View File

@ -33,7 +33,7 @@ use wallet::wallet::Wallet;
use util::hash::{DumbHasher, Sha256dHash}; use util::hash::{DumbHasher, Sha256dHash};
/// The type of a wallet-spendable txout /// The type of a wallet-spendable txout
#[deriving(Clone, PartialEq, Eq, Show)] #[derive(Clone, PartialEq, Eq, Show)]
pub enum WalletTxOutType { pub enum WalletTxOutType {
/// Pay-to-address transaction redeemable using an ECDSA key /// Pay-to-address transaction redeemable using an ECDSA key
PayToAddress(SecretKey), PayToAddress(SecretKey),
@ -43,7 +43,7 @@ pub enum WalletTxOutType {
/// A txout that is spendable by the wallet /// A txout that is spendable by the wallet
#[deriving(Clone, PartialEq, Eq, Show)] #[derive(Clone, PartialEq, Eq, Show)]
pub struct WalletTxOut { pub struct WalletTxOut {
/// The TXID of the transaction this output is part of /// The TXID of the transaction this output is part of
pub txid: Sha256dHash, pub txid: Sha256dHash,
@ -58,7 +58,7 @@ pub struct WalletTxOut {
} }
/// An address index /// An address index
#[deriving(Clone, PartialEq, Eq, Show)] #[derive(Clone, PartialEq, Eq, Show)]
pub struct AddressIndex { pub struct AddressIndex {
tentative_index: HashMap<Script, Vec<WalletTxOut>>, tentative_index: HashMap<Script, Vec<WalletTxOut>>,
index: HashMap<(Sha256dHash, u32), Vec<WalletTxOut>, DumbHasher>, index: HashMap<(Sha256dHash, u32), Vec<WalletTxOut>, DumbHasher>,

View File

@ -51,7 +51,7 @@ impl Default for Fingerprint {
} }
/// Extended private key /// Extended private key
#[deriving(Clone, PartialEq, Eq, Encodable, Decodable, Show)] #[derive(Clone, PartialEq, Eq, Encodable, Decodable, Show)]
pub struct ExtendedPrivKey { pub struct ExtendedPrivKey {
/// The network this key is to be used on /// The network this key is to be used on
pub network: Network, pub network: Network,
@ -68,7 +68,7 @@ pub struct ExtendedPrivKey {
} }
/// Extended public key /// Extended public key
#[deriving(Clone, PartialEq, Eq, Encodable, Decodable, Show)] #[derive(Clone, PartialEq, Eq, Encodable, Decodable, Show)]
pub struct ExtendedPubKey { pub struct ExtendedPubKey {
/// The network this key is to be used on /// The network this key is to be used on
pub network: Network, pub network: Network,
@ -85,7 +85,7 @@ pub struct ExtendedPubKey {
} }
/// A child number for a derived key /// A child number for a derived key
#[deriving(Clone, PartialEq, Eq, Show)] #[derive(Clone, PartialEq, Eq, Show)]
pub enum ChildNumber { pub enum ChildNumber {
/// Hardened key index, within [0, 2^31 - 1] /// Hardened key index, within [0, 2^31 - 1]
Hardened(u32), Hardened(u32),
@ -114,7 +114,7 @@ impl<D: Decoder<E>, E> Decodable<D, E> for ChildNumber {
} }
/// A BIP32 error /// A BIP32 error
#[deriving(Clone, PartialEq, Eq, Show)] #[derive(Clone, PartialEq, Eq, Show)]
pub enum Error { pub enum Error {
/// A pk->pk derivation was attempted on a hardened key /// A pk->pk derivation was attempted on a hardened key
CannotDeriveFromHardenedKey, CannotDeriveFromHardenedKey,

View File

@ -31,7 +31,7 @@ use wallet::address::Address;
use wallet::address_index::AddressIndex; use wallet::address_index::AddressIndex;
/// A Wallet error /// A Wallet error
#[deriving(Clone, PartialEq, Eq, Show)] #[derive(Clone, PartialEq, Eq, Show)]
pub enum Error { pub enum Error {
/// Tried to lookup an account by name, but none was found /// Tried to lookup an account by name, but none was found
AccountNotFound, AccountNotFound,
@ -54,7 +54,7 @@ pub enum AccountChain {
} }
/// An account /// An account
#[deriving(Clone, PartialEq, Eq, Encodable, Decodable, Show)] #[derive(Clone, PartialEq, Eq, Encodable, Decodable, Show)]
pub struct Account { pub struct Account {
name: String, name: String,
internal_path: Vec<ChildNumber>, internal_path: Vec<ChildNumber>,
@ -80,7 +80,7 @@ impl Default for Account {
} }
/// A wallet /// A wallet
#[deriving(Clone, PartialEq, Eq, Show)] #[derive(Clone, PartialEq, Eq, Show)]
pub struct Wallet { pub struct Wallet {
master: ExtendedPrivKey, master: ExtendedPrivKey,
accounts: HashMap<String, Account>, accounts: HashMap<String, Account>,