├── .gitignore ├── Gopkg.lock ├── Gopkg.toml ├── README.md ├── _vendor-20171101171736 ├── github.com │ ├── btcsuite │ │ ├── btcd │ │ │ ├── LICENSE │ │ │ ├── addrmgr │ │ │ │ ├── addrmanager.go │ │ │ │ ├── doc.go │ │ │ │ ├── knownaddress.go │ │ │ │ ├── log.go │ │ │ │ └── network.go │ │ │ ├── blockchain │ │ │ │ ├── accept.go │ │ │ │ ├── blocklocator.go │ │ │ │ ├── chain.go │ │ │ │ ├── chainio.go │ │ │ │ ├── checkpoints.go │ │ │ │ ├── compress.go │ │ │ │ ├── difficulty.go │ │ │ │ ├── doc.go │ │ │ │ ├── error.go │ │ │ │ ├── fullblocktests │ │ │ │ │ ├── generate.go │ │ │ │ │ └── params.go │ │ │ │ ├── indexers │ │ │ │ │ ├── addrindex.go │ │ │ │ │ ├── blocklogger.go │ │ │ │ │ ├── common.go │ │ │ │ │ ├── log.go │ │ │ │ │ ├── manager.go │ │ │ │ │ └── txindex.go │ │ │ │ ├── log.go │ │ │ │ ├── mediantime.go │ │ │ │ ├── merkle.go │ │ │ │ ├── notifications.go │ │ │ │ ├── process.go │ │ │ │ ├── scriptval.go │ │ │ │ ├── timesorter.go │ │ │ │ ├── utxoviewpoint.go │ │ │ │ └── validate.go │ │ │ ├── blocklogger.go │ │ │ ├── blockmanager.go │ │ │ ├── btcd.go │ │ │ ├── btcec │ │ │ │ ├── btcec.go │ │ │ │ ├── ciphering.go │ │ │ │ ├── doc.go │ │ │ │ ├── field.go │ │ │ │ ├── genprecomps.go │ │ │ │ ├── gensecp256k1.go │ │ │ │ ├── precompute.go │ │ │ │ ├── privkey.go │ │ │ │ ├── pubkey.go │ │ │ │ ├── secp256k1.go │ │ │ │ └── signature.go │ │ │ ├── btcjson │ │ │ │ ├── btcdextcmds.go │ │ │ │ ├── btcwalletextcmds.go │ │ │ │ ├── chainsvrcmds.go │ │ │ │ ├── chainsvrresults.go │ │ │ │ ├── chainsvrwscmds.go │ │ │ │ ├── chainsvrwsntfns.go │ │ │ │ ├── chainsvrwsresults.go │ │ │ │ ├── cmdinfo.go │ │ │ │ ├── cmdparse.go │ │ │ │ ├── doc.go │ │ │ │ ├── error.go │ │ │ │ ├── help.go │ │ │ │ ├── helpers.go │ │ │ │ ├── jsonrpc.go │ │ │ │ ├── jsonrpcerr.go │ │ │ │ ├── register.go │ │ │ │ ├── walletsvrcmds.go │ │ │ │ ├── walletsvrresults.go │ │ │ │ ├── walletsvrwscmds.go │ │ │ │ └── walletsvrwsntfns.go │ │ │ ├── chaincfg │ │ │ │ ├── chainhash │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── hash.go │ │ │ │ │ └── hashfuncs.go │ │ │ │ ├── doc.go │ │ │ │ ├── genesis.go │ │ │ │ └── params.go │ │ │ ├── cmd │ │ │ │ ├── addblock │ │ │ │ │ ├── addblock.go │ │ │ │ │ ├── config.go │ │ │ │ │ └── import.go │ │ │ │ ├── btcctl │ │ │ │ │ ├── btcctl.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── httpclient.go │ │ │ │ │ └── version.go │ │ │ │ ├── findcheckpoint │ │ │ │ │ ├── config.go │ │ │ │ │ └── findcheckpoint.go │ │ │ │ └── gencerts │ │ │ │ │ └── gencerts.go │ │ │ ├── config.go │ │ │ ├── cpuminer.go │ │ │ ├── database │ │ │ │ ├── cmd │ │ │ │ │ └── dbtool │ │ │ │ │ │ ├── fetchblock.go │ │ │ │ │ │ ├── fetchblockregion.go │ │ │ │ │ │ ├── globalconfig.go │ │ │ │ │ │ ├── insecureimport.go │ │ │ │ │ │ ├── loadheaders.go │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ └── signal.go │ │ │ │ ├── doc.go │ │ │ │ ├── driver.go │ │ │ │ ├── error.go │ │ │ │ ├── ffldb │ │ │ │ │ ├── blockio.go │ │ │ │ │ ├── db.go │ │ │ │ │ ├── dbcache.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── driver.go │ │ │ │ │ ├── ldbtreapiter.go │ │ │ │ │ └── reconcile.go │ │ │ │ ├── interface.go │ │ │ │ ├── internal │ │ │ │ │ └── treap │ │ │ │ │ │ ├── common.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── immutable.go │ │ │ │ │ │ ├── mutable.go │ │ │ │ │ │ └── treapiter.go │ │ │ │ └── log.go │ │ │ ├── discovery.go │ │ │ ├── doc.go │ │ │ ├── dynamicbanscore.go │ │ │ ├── limits │ │ │ │ ├── limits_plan9.go │ │ │ │ ├── limits_unix.go │ │ │ │ └── limits_windows.go │ │ │ ├── log.go │ │ │ ├── mempool │ │ │ │ ├── error.go │ │ │ │ ├── log.go │ │ │ │ ├── mempool.go │ │ │ │ └── policy.go │ │ │ ├── mining.go │ │ │ ├── mining │ │ │ │ ├── mining.go │ │ │ │ └── policy.go │ │ │ ├── params.go │ │ │ ├── peer │ │ │ │ ├── doc.go │ │ │ │ ├── log.go │ │ │ │ ├── mruinvmap.go │ │ │ │ ├── mrunoncemap.go │ │ │ │ └── peer.go │ │ │ ├── rpcserver.go │ │ │ ├── rpcserverhelp.go │ │ │ ├── rpctest │ │ │ │ ├── blockgen.go │ │ │ │ ├── doc.go │ │ │ │ ├── memwallet.go │ │ │ │ ├── node.go │ │ │ │ ├── rpc_harness.go │ │ │ │ └── utils.go │ │ │ ├── rpcwebsocket.go │ │ │ ├── server.go │ │ │ ├── service_windows.go │ │ │ ├── signal.go │ │ │ ├── signalsigterm.go │ │ │ ├── txscript │ │ │ │ ├── consensus.go │ │ │ │ ├── doc.go │ │ │ │ ├── engine.go │ │ │ │ ├── error.go │ │ │ │ ├── log.go │ │ │ │ ├── opcode.go │ │ │ │ ├── script.go │ │ │ │ ├── scriptbuilder.go │ │ │ │ ├── scriptnum.go │ │ │ │ ├── sigcache.go │ │ │ │ ├── sign.go │ │ │ │ ├── stack.go │ │ │ │ └── standard.go │ │ │ ├── upgrade.go │ │ │ ├── upnp.go │ │ │ ├── version.go │ │ │ └── wire │ │ │ │ ├── blockheader.go │ │ │ │ ├── common.go │ │ │ │ ├── doc.go │ │ │ │ ├── error.go │ │ │ │ ├── invvect.go │ │ │ │ ├── message.go │ │ │ │ ├── msgaddr.go │ │ │ │ ├── msgalert.go │ │ │ │ ├── msgblock.go │ │ │ │ ├── msgfeefilter.go │ │ │ │ ├── msgfilteradd.go │ │ │ │ ├── msgfilterclear.go │ │ │ │ ├── msgfilterload.go │ │ │ │ ├── msggetaddr.go │ │ │ │ ├── msggetblocks.go │ │ │ │ ├── msggetdata.go │ │ │ │ ├── msggetheaders.go │ │ │ │ ├── msgheaders.go │ │ │ │ ├── msginv.go │ │ │ │ ├── msgmempool.go │ │ │ │ ├── msgmerkleblock.go │ │ │ │ ├── msgnotfound.go │ │ │ │ ├── msgping.go │ │ │ │ ├── msgpong.go │ │ │ │ ├── msgreject.go │ │ │ │ ├── msgsendheaders.go │ │ │ │ ├── msgtx.go │ │ │ │ ├── msgverack.go │ │ │ │ ├── msgversion.go │ │ │ │ ├── netaddress.go │ │ │ │ └── protocol.go │ │ ├── btclog │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ ├── interface.go │ │ │ ├── subsystem.go │ │ │ └── util.go │ │ ├── btcrpcclient │ │ │ ├── LICENSE │ │ │ ├── chain.go │ │ │ ├── doc.go │ │ │ ├── examples │ │ │ │ ├── bitcoincorehttp │ │ │ │ │ └── main.go │ │ │ │ ├── btcdwebsockets │ │ │ │ │ └── main.go │ │ │ │ └── btcwalletwebsockets │ │ │ │ │ └── main.go │ │ │ ├── extensions.go │ │ │ ├── infrastructure.go │ │ │ ├── log.go │ │ │ ├── mining.go │ │ │ ├── net.go │ │ │ ├── notify.go │ │ │ ├── rawrequest.go │ │ │ ├── rawtransactions.go │ │ │ └── wallet.go │ │ ├── btcutil │ │ │ ├── LICENSE │ │ │ ├── address.go │ │ │ ├── amount.go │ │ │ ├── appdata.go │ │ │ ├── base58 │ │ │ │ ├── alphabet.go │ │ │ │ ├── base58.go │ │ │ │ ├── base58check.go │ │ │ │ ├── doc.go │ │ │ │ └── genalphabet.go │ │ │ ├── block.go │ │ │ ├── bloom │ │ │ │ ├── filter.go │ │ │ │ ├── merkleblock.go │ │ │ │ └── murmurhash3.go │ │ │ ├── certgen.go │ │ │ ├── coinset │ │ │ │ └── coins.go │ │ │ ├── const.go │ │ │ ├── doc.go │ │ │ ├── hash160.go │ │ │ ├── hdkeychain │ │ │ │ ├── doc.go │ │ │ │ └── extendedkey.go │ │ │ ├── net.go │ │ │ ├── net_noop.go │ │ │ ├── tx.go │ │ │ ├── txsort │ │ │ │ ├── doc.go │ │ │ │ └── txsort.go │ │ │ └── wif.go │ │ ├── fastsha256 │ │ │ ├── LICENSE.md │ │ │ ├── sha256.go │ │ │ ├── sha256block.go │ │ │ ├── sha256block_386.s │ │ │ ├── sha256block_amd64.s │ │ │ └── sha256block_decl.go │ │ ├── go-flags │ │ │ ├── LICENSE │ │ │ ├── arg.go │ │ │ ├── closest.go │ │ │ ├── command.go │ │ │ ├── command_private.go │ │ │ ├── completion.go │ │ │ ├── convert.go │ │ │ ├── error.go │ │ │ ├── examples │ │ │ │ ├── add.go │ │ │ │ ├── main.go │ │ │ │ └── rm.go │ │ │ ├── flags.go │ │ │ ├── group.go │ │ │ ├── group_private.go │ │ │ ├── help.go │ │ │ ├── ini.go │ │ │ ├── ini_private.go │ │ │ ├── man.go │ │ │ ├── multitag.go │ │ │ ├── option.go │ │ │ ├── option_private.go │ │ │ ├── optstyle_other.go │ │ │ ├── optstyle_windows.go │ │ │ ├── parser.go │ │ │ ├── parser_private.go │ │ │ ├── termsize.go │ │ │ ├── termsize_linux.go │ │ │ ├── termsize_nosysioctl.go │ │ │ ├── termsize_other.go │ │ │ ├── termsize_plan9.go │ │ │ └── termsize_unix.go │ │ ├── go-socks │ │ │ └── socks │ │ │ │ ├── LICENSE │ │ │ │ ├── addr.go │ │ │ │ ├── conn.go │ │ │ │ └── dial.go │ │ ├── golangcrypto │ │ │ └── ripemd160 │ │ │ │ ├── LICENSE │ │ │ │ ├── ripemd160.go │ │ │ │ └── ripemd160block.go │ │ ├── goleveldb │ │ │ └── leveldb │ │ │ │ ├── LICENSE │ │ │ │ ├── batch.go │ │ │ │ ├── cache │ │ │ │ ├── cache.go │ │ │ │ └── lru.go │ │ │ │ ├── comparer.go │ │ │ │ ├── comparer │ │ │ │ ├── bytes_comparer.go │ │ │ │ └── comparer.go │ │ │ │ ├── db.go │ │ │ │ ├── db_compaction.go │ │ │ │ ├── db_iter.go │ │ │ │ ├── db_snapshot.go │ │ │ │ ├── db_state.go │ │ │ │ ├── db_transaction.go │ │ │ │ ├── db_util.go │ │ │ │ ├── db_write.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── errors │ │ │ │ └── errors.go │ │ │ │ ├── filter.go │ │ │ │ ├── filter │ │ │ │ ├── bloom.go │ │ │ │ └── filter.go │ │ │ │ ├── iterator │ │ │ │ ├── array_iter.go │ │ │ │ ├── indexed_iter.go │ │ │ │ ├── iter.go │ │ │ │ └── merged_iter.go │ │ │ │ ├── journal │ │ │ │ └── journal.go │ │ │ │ ├── key.go │ │ │ │ ├── memdb │ │ │ │ └── memdb.go │ │ │ │ ├── opt │ │ │ │ └── options.go │ │ │ │ ├── options.go │ │ │ │ ├── session.go │ │ │ │ ├── session_compaction.go │ │ │ │ ├── session_record.go │ │ │ │ ├── session_util.go │ │ │ │ ├── storage │ │ │ │ ├── file_storage.go │ │ │ │ ├── file_storage_plan9.go │ │ │ │ ├── file_storage_solaris.go │ │ │ │ ├── file_storage_unix.go │ │ │ │ ├── file_storage_windows.go │ │ │ │ ├── mem_storage.go │ │ │ │ └── storage.go │ │ │ │ ├── table.go │ │ │ │ ├── table │ │ │ │ ├── reader.go │ │ │ │ ├── table.go │ │ │ │ └── writer.go │ │ │ │ ├── testutil │ │ │ │ ├── db.go │ │ │ │ ├── ginkgo.go │ │ │ │ ├── iter.go │ │ │ │ ├── kv.go │ │ │ │ ├── kvtest.go │ │ │ │ ├── storage.go │ │ │ │ └── util.go │ │ │ │ ├── util.go │ │ │ │ ├── util │ │ │ │ ├── buffer.go │ │ │ │ ├── buffer_pool.go │ │ │ │ ├── crc32.go │ │ │ │ ├── hash.go │ │ │ │ ├── range.go │ │ │ │ └── util.go │ │ │ │ └── version.go │ │ ├── seelog │ │ │ ├── LICENSE.txt │ │ │ ├── behavior_adaptivelogger.go │ │ │ ├── behavior_asynclogger.go │ │ │ ├── behavior_asynclooplogger.go │ │ │ ├── behavior_asynctimerlogger.go │ │ │ ├── behavior_synclogger.go │ │ │ ├── cfg_config.go │ │ │ ├── cfg_errors.go │ │ │ ├── cfg_logconfig.go │ │ │ ├── cfg_parser.go │ │ │ ├── common_closer.go │ │ │ ├── common_constraints.go │ │ │ ├── common_context.go │ │ │ ├── common_exception.go │ │ │ ├── common_flusher.go │ │ │ ├── common_loglevel.go │ │ │ ├── dispatch_custom.go │ │ │ ├── dispatch_dispatcher.go │ │ │ ├── dispatch_filterdispatcher.go │ │ │ ├── dispatch_splitdispatcher.go │ │ │ ├── doc.go │ │ │ ├── format.go │ │ │ ├── internals_baseerror.go │ │ │ ├── internals_fsutils.go │ │ │ ├── internals_xmlnode.go │ │ │ ├── log.go │ │ │ ├── logger.go │ │ │ ├── writers_bufferedwriter.go │ │ │ ├── writers_connwriter.go │ │ │ ├── writers_consolewriter.go │ │ │ ├── writers_filewriter.go │ │ │ ├── writers_formattedwriter.go │ │ │ ├── writers_rollingfilewriter.go │ │ │ └── writers_smtpwriter.go │ │ ├── snappy-go │ │ │ ├── LICENSE │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ └── snappy.go │ │ ├── websocket │ │ │ ├── LICENSE │ │ │ ├── client.go │ │ │ ├── conn.go │ │ │ ├── doc.go │ │ │ ├── examples │ │ │ │ ├── autobahn │ │ │ │ │ └── server.go │ │ │ │ ├── chat │ │ │ │ │ ├── conn.go │ │ │ │ │ ├── hub.go │ │ │ │ │ └── main.go │ │ │ │ └── filewatch │ │ │ │ │ └── main.go │ │ │ ├── json.go │ │ │ ├── server.go │ │ │ └── util.go │ │ └── winsvc │ │ │ ├── eventlog │ │ │ ├── LICENSE │ │ │ ├── install.go │ │ │ └── log.go │ │ │ ├── mgr │ │ │ ├── LICENSE │ │ │ ├── config.go │ │ │ ├── mgr.go │ │ │ └── service.go │ │ │ ├── registry │ │ │ ├── LICENSE │ │ │ └── registry.go │ │ │ ├── svc │ │ │ ├── LICENSE │ │ │ ├── event.go │ │ │ ├── go12.c │ │ │ ├── go12.go │ │ │ ├── go13.go │ │ │ ├── security.go │ │ │ ├── service.go │ │ │ ├── sys_386.s │ │ │ └── sys_amd64.s │ │ │ └── winapi │ │ │ ├── LICENSE │ │ │ ├── event.go │ │ │ ├── eventlog.go │ │ │ ├── registry.go │ │ │ ├── security.go │ │ │ ├── service.go │ │ │ ├── syscall.go │ │ │ └── zwinapi_windows.go │ ├── codahale │ │ └── chacha20 │ │ │ ├── LICENSE │ │ │ ├── chacha20.go │ │ │ └── core_ref.go │ ├── corpusc │ │ └── viscript │ │ │ ├── hypervisor │ │ │ └── dbus │ │ │ │ ├── dbus.go │ │ │ │ ├── pubsub.go │ │ │ │ ├── registry.go │ │ │ │ └── types.go │ │ │ ├── msg │ │ │ ├── const_keys.go │ │ │ ├── const_mouse.go │ │ │ ├── dispatcher.go │ │ │ ├── id.go │ │ │ ├── interfaces.go │ │ │ ├── rpc.go │ │ │ ├── serializer.go │ │ │ ├── types_app.go │ │ │ ├── types_input.go │ │ │ ├── types_process.go │ │ │ └── types_terminal.go │ │ │ └── vendor │ │ │ └── github.com │ │ │ └── skycoin │ │ │ └── skycoin │ │ │ ├── src │ │ │ ├── cipher │ │ │ │ ├── address.go │ │ │ │ ├── base58 │ │ │ │ │ └── base58.go │ │ │ │ ├── chacha20.go │ │ │ │ ├── chacha20 │ │ │ │ │ ├── chacha20.go │ │ │ │ │ ├── core_ref.go │ │ │ │ │ └── go-chacha20 │ │ │ │ │ │ ├── chacha │ │ │ │ │ │ ├── chacha20_krovetz.c │ │ │ │ │ │ ├── chacha20_krovetz.go │ │ │ │ │ │ ├── chacha20_krovetz.h │ │ │ │ │ │ ├── chacha20_ref.go │ │ │ │ │ │ └── const.go │ │ │ │ │ │ └── chacha20.go │ │ │ │ ├── crypto.go │ │ │ │ ├── encoder │ │ │ │ │ ├── encoder.go │ │ │ │ │ └── field.go │ │ │ │ ├── go-bip39 │ │ │ │ │ ├── bip39.go │ │ │ │ │ └── wordlist.go │ │ │ │ ├── hash.go │ │ │ │ ├── ripemd160 │ │ │ │ │ ├── ripemd160block.go │ │ │ │ │ └── ripmd_160.go │ │ │ │ └── secp256k1-go │ │ │ │ │ ├── secp256_rand.go │ │ │ │ │ ├── secp256k1-go2 │ │ │ │ │ ├── ec.go │ │ │ │ │ ├── field.go │ │ │ │ │ ├── num.go │ │ │ │ │ ├── secp256k1.go │ │ │ │ │ ├── sig.go │ │ │ │ │ ├── xy.go │ │ │ │ │ ├── xyz.go │ │ │ │ │ ├── z_consts.go │ │ │ │ │ └── z_init.go │ │ │ │ │ └── secp256k1.go │ │ │ └── util │ │ │ │ ├── cert.go │ │ │ │ ├── file.go │ │ │ │ ├── http │ │ │ │ ├── error.go │ │ │ │ ├── http.go │ │ │ │ └── json.go │ │ │ │ ├── logging.go │ │ │ │ ├── time.go │ │ │ │ └── web_browser.go │ │ │ └── vendor │ │ │ ├── github.com │ │ │ ├── op │ │ │ │ └── go-logging │ │ │ │ │ ├── backend.go │ │ │ │ │ ├── examples │ │ │ │ │ └── example.go │ │ │ │ │ ├── format.go │ │ │ │ │ ├── level.go │ │ │ │ │ ├── log_nix.go │ │ │ │ │ ├── log_windows.go │ │ │ │ │ ├── logger.go │ │ │ │ │ ├── memory.go │ │ │ │ │ ├── multi.go │ │ │ │ │ ├── syslog.go │ │ │ │ │ └── syslog_fallback.go │ │ │ ├── tang0th │ │ │ │ └── go-chacha20 │ │ │ │ │ └── chacha │ │ │ │ │ ├── chacha20_krovetz.c │ │ │ │ │ ├── chacha20_krovetz.go │ │ │ │ │ ├── chacha20_krovetz.h │ │ │ │ │ ├── chacha20_ref.go │ │ │ │ │ └── const.go │ │ │ └── toqueteos │ │ │ │ └── webbrowser │ │ │ │ ├── doc.go │ │ │ │ ├── examples │ │ │ │ └── simple.go │ │ │ │ └── webbrowser.go │ │ │ └── golang.org │ │ │ └── x │ │ │ └── crypto │ │ │ └── pbkdf2 │ │ │ └── pbkdf2.go │ ├── davecgh │ │ └── go-spew │ │ │ └── spew │ │ │ ├── LICENSE │ │ │ ├── bypass.go │ │ │ ├── bypasssafe.go │ │ │ ├── common.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── dump.go │ │ │ ├── format.go │ │ │ └── spew.go │ ├── golang │ │ └── protobuf │ │ │ ├── proto │ │ │ ├── LICENSE │ │ │ ├── clone.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── equal.go │ │ │ ├── extensions.go │ │ │ ├── lib.go │ │ │ ├── message_set.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── properties.go │ │ │ ├── proto3_proto │ │ │ │ └── proto3.pb.go │ │ │ ├── text.go │ │ │ └── text_parser.go │ │ │ └── ptypes │ │ │ └── any │ │ │ ├── LICENSE │ │ │ └── any.pb.go │ ├── julienschmidt │ │ └── httprouter │ │ │ ├── LICENSE │ │ │ ├── path.go │ │ │ ├── router.go │ │ │ └── tree.go │ ├── onsi │ │ ├── ginkgo │ │ │ ├── LICENSE │ │ │ ├── config │ │ │ │ └── config.go │ │ │ ├── extensions │ │ │ │ └── table │ │ │ │ │ ├── table.go │ │ │ │ │ └── table_entry.go │ │ │ ├── ginkgo │ │ │ │ ├── bootstrap_command.go │ │ │ │ ├── build_command.go │ │ │ │ ├── convert │ │ │ │ │ ├── ginkgo_ast_nodes.go │ │ │ │ │ ├── import.go │ │ │ │ │ ├── package_rewriter.go │ │ │ │ │ ├── test_finder.go │ │ │ │ │ ├── testfile_rewriter.go │ │ │ │ │ └── testing_t_rewriter.go │ │ │ │ ├── convert_command.go │ │ │ │ ├── generate_command.go │ │ │ │ ├── help_command.go │ │ │ │ ├── interrupthandler │ │ │ │ │ ├── interrupt_handler.go │ │ │ │ │ ├── sigquit_swallower_unix.go │ │ │ │ │ └── sigquit_swallower_windows.go │ │ │ │ ├── main.go │ │ │ │ ├── nodot │ │ │ │ │ └── nodot.go │ │ │ │ ├── nodot_command.go │ │ │ │ ├── notifications.go │ │ │ │ ├── run_command.go │ │ │ │ ├── run_watch_and_build_command_flags.go │ │ │ │ ├── suite_runner.go │ │ │ │ ├── testrunner │ │ │ │ │ ├── log_writer.go │ │ │ │ │ ├── run_result.go │ │ │ │ │ └── test_runner.go │ │ │ │ ├── testsuite │ │ │ │ │ ├── test_suite.go │ │ │ │ │ ├── vendor_check_go15.go │ │ │ │ │ └── vendor_check_go16.go │ │ │ │ ├── unfocus_command.go │ │ │ │ ├── version_command.go │ │ │ │ ├── watch │ │ │ │ │ ├── delta.go │ │ │ │ │ ├── delta_tracker.go │ │ │ │ │ ├── dependencies.go │ │ │ │ │ ├── package_hash.go │ │ │ │ │ ├── package_hashes.go │ │ │ │ │ └── suite.go │ │ │ │ └── watch_command.go │ │ │ ├── ginkgo_dsl.go │ │ │ ├── integration │ │ │ │ └── integration.go │ │ │ ├── internal │ │ │ │ ├── codelocation │ │ │ │ │ └── code_location.go │ │ │ │ ├── containernode │ │ │ │ │ └── container_node.go │ │ │ │ ├── failer │ │ │ │ │ └── failer.go │ │ │ │ ├── leafnodes │ │ │ │ │ ├── benchmarker.go │ │ │ │ │ ├── interfaces.go │ │ │ │ │ ├── it_node.go │ │ │ │ │ ├── measure_node.go │ │ │ │ │ ├── runner.go │ │ │ │ │ ├── setup_nodes.go │ │ │ │ │ ├── suite_nodes.go │ │ │ │ │ ├── synchronized_after_suite_node.go │ │ │ │ │ └── synchronized_before_suite_node.go │ │ │ │ ├── remote │ │ │ │ │ ├── aggregator.go │ │ │ │ │ ├── forwarding_reporter.go │ │ │ │ │ ├── output_interceptor.go │ │ │ │ │ ├── output_interceptor_unix.go │ │ │ │ │ ├── output_interceptor_win.go │ │ │ │ │ ├── server.go │ │ │ │ │ ├── syscall_dup_linux_arm64.go │ │ │ │ │ ├── syscall_dup_solaris.go │ │ │ │ │ └── syscall_dup_unix.go │ │ │ │ ├── spec │ │ │ │ │ ├── index_computer.go │ │ │ │ │ ├── spec.go │ │ │ │ │ └── specs.go │ │ │ │ ├── specrunner │ │ │ │ │ ├── random_id.go │ │ │ │ │ └── spec_runner.go │ │ │ │ ├── suite │ │ │ │ │ └── suite.go │ │ │ │ ├── testingtproxy │ │ │ │ │ └── testing_t_proxy.go │ │ │ │ └── writer │ │ │ │ │ ├── fake_writer.go │ │ │ │ │ └── writer.go │ │ │ ├── reporters │ │ │ │ ├── default_reporter.go │ │ │ │ ├── fake_reporter.go │ │ │ │ ├── junit_reporter.go │ │ │ │ ├── reporter.go │ │ │ │ ├── stenographer │ │ │ │ │ ├── console_logging.go │ │ │ │ │ ├── fake_stenographer.go │ │ │ │ │ ├── stenographer.go │ │ │ │ │ └── support │ │ │ │ │ │ ├── go-colorable │ │ │ │ │ │ ├── colorable_others.go │ │ │ │ │ │ ├── colorable_windows.go │ │ │ │ │ │ └── noncolorable.go │ │ │ │ │ │ └── go-isatty │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── isatty_appengine.go │ │ │ │ │ │ ├── isatty_bsd.go │ │ │ │ │ │ ├── isatty_linux.go │ │ │ │ │ │ ├── isatty_solaris.go │ │ │ │ │ │ └── isatty_windows.go │ │ │ │ └── teamcity_reporter.go │ │ │ └── types │ │ │ │ ├── code_location.go │ │ │ │ ├── synchronization.go │ │ │ │ └── types.go │ │ └── gomega │ │ │ ├── LICENSE │ │ │ ├── format │ │ │ └── format.go │ │ │ ├── gbytes │ │ │ ├── buffer.go │ │ │ └── say_matcher.go │ │ │ ├── gexec │ │ │ ├── build.go │ │ │ ├── exit_matcher.go │ │ │ ├── prefixed_writer.go │ │ │ └── session.go │ │ │ ├── ghttp │ │ │ ├── handlers.go │ │ │ ├── protobuf │ │ │ │ ├── protobuf.go │ │ │ │ └── simple_message.pb.go │ │ │ └── test_server.go │ │ │ ├── gomega_dsl.go │ │ │ ├── gstruct │ │ │ ├── elements.go │ │ │ ├── errors │ │ │ │ └── nested_types.go │ │ │ ├── fields.go │ │ │ ├── ignore.go │ │ │ ├── pointer.go │ │ │ └── types.go │ │ │ ├── internal │ │ │ ├── assertion │ │ │ │ └── assertion.go │ │ │ ├── asyncassertion │ │ │ │ └── async_assertion.go │ │ │ ├── fakematcher │ │ │ │ └── fake_matcher.go │ │ │ ├── oraclematcher │ │ │ │ └── oracle_matcher.go │ │ │ └── testingtsupport │ │ │ │ └── testing_t_support.go │ │ │ ├── matchers.go │ │ │ ├── matchers │ │ │ ├── and.go │ │ │ ├── assignable_to_type_of_matcher.go │ │ │ ├── be_a_directory.go │ │ │ ├── be_a_regular_file.go │ │ │ ├── be_an_existing_file.go │ │ │ ├── be_closed_matcher.go │ │ │ ├── be_empty_matcher.go │ │ │ ├── be_equivalent_to_matcher.go │ │ │ ├── be_false_matcher.go │ │ │ ├── be_identical_to.go │ │ │ ├── be_nil_matcher.go │ │ │ ├── be_numerically_matcher.go │ │ │ ├── be_sent_matcher.go │ │ │ ├── be_temporally_matcher.go │ │ │ ├── be_true_matcher.go │ │ │ ├── be_zero_matcher.go │ │ │ ├── consist_of.go │ │ │ ├── contain_element_matcher.go │ │ │ ├── contain_substring_matcher.go │ │ │ ├── equal_matcher.go │ │ │ ├── have_cap_matcher.go │ │ │ ├── have_key_matcher.go │ │ │ ├── have_key_with_value_matcher.go │ │ │ ├── have_len_matcher.go │ │ │ ├── have_occurred_matcher.go │ │ │ ├── have_prefix_matcher.go │ │ │ ├── have_suffix_matcher.go │ │ │ ├── match_error_matcher.go │ │ │ ├── match_json_matcher.go │ │ │ ├── match_regexp_matcher.go │ │ │ ├── match_yaml_matcher.go │ │ │ ├── not.go │ │ │ ├── or.go │ │ │ ├── panic_matcher.go │ │ │ ├── receive_matcher.go │ │ │ ├── succeed_matcher.go │ │ │ ├── support │ │ │ │ └── goraph │ │ │ │ │ ├── bipartitegraph │ │ │ │ │ ├── bipartitegraph.go │ │ │ │ │ └── bipartitegraphmatching.go │ │ │ │ │ ├── edge │ │ │ │ │ └── edge.go │ │ │ │ │ ├── node │ │ │ │ │ └── node.go │ │ │ │ │ └── util │ │ │ │ │ └── util.go │ │ │ ├── type_support.go │ │ │ └── with_transform.go │ │ │ └── types │ │ │ └── types.go │ ├── op │ │ └── go-logging │ │ │ ├── LICENSE │ │ │ ├── backend.go │ │ │ ├── examples │ │ │ └── example.go │ │ │ ├── format.go │ │ │ ├── level.go │ │ │ ├── log_nix.go │ │ │ ├── log_windows.go │ │ │ ├── logger.go │ │ │ ├── memory.go │ │ │ ├── multi.go │ │ │ ├── syslog.go │ │ │ └── syslog_fallback.go │ ├── skycoin │ │ └── skycoin │ │ │ ├── cmd │ │ │ ├── address_gen │ │ │ │ └── address_gen.go │ │ │ ├── cli │ │ │ │ └── cli.go │ │ │ └── skycoin │ │ │ │ └── skycoin.go │ │ │ ├── skycoin-web │ │ │ └── backend.go │ │ │ ├── src │ │ │ ├── aether │ │ │ │ ├── aether │ │ │ │ │ └── aether.go │ │ │ │ ├── cleanup │ │ │ │ │ └── services │ │ │ │ │ │ ├── blob │ │ │ │ │ │ ├── blob_replicator.go │ │ │ │ │ │ └── blob_replicator_manager.go │ │ │ │ │ │ └── chain │ │ │ │ │ │ ├── chain.go │ │ │ │ │ │ ├── chain_manager.go │ │ │ │ │ │ └── chain_overlord.go │ │ │ │ ├── daemon │ │ │ │ │ ├── daemon.go │ │ │ │ │ ├── hash.go │ │ │ │ │ ├── messages.go │ │ │ │ │ ├── peers.go │ │ │ │ │ └── pex │ │ │ │ │ │ └── pex.go │ │ │ │ ├── dht │ │ │ │ │ └── dht.go │ │ │ │ ├── encoder │ │ │ │ │ └── encoder.go │ │ │ │ ├── example │ │ │ │ │ ├── aether │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── chain │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── dht │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── pool1 │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── pool2 │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── pool3 │ │ │ │ │ │ └── main.go │ │ │ │ │ └── pool4 │ │ │ │ │ │ └── main.go │ │ │ │ ├── gnet │ │ │ │ │ ├── dispatcher.go │ │ │ │ │ ├── message.go │ │ │ │ │ ├── pool.go │ │ │ │ │ └── service.go │ │ │ │ ├── hashchain │ │ │ │ │ └── chain.go │ │ │ │ └── wifi │ │ │ │ │ ├── linux │ │ │ │ │ ├── dhclient.go │ │ │ │ │ ├── ifconfig.go │ │ │ │ │ ├── iwconfig.go │ │ │ │ │ ├── iwlist.go │ │ │ │ │ ├── linux.go │ │ │ │ │ ├── networkmanager.go │ │ │ │ │ ├── resolvconf.go │ │ │ │ │ ├── rfkill.go │ │ │ │ │ ├── route.go │ │ │ │ │ ├── sysfs.go │ │ │ │ │ ├── udevadm.go │ │ │ │ │ └── wpasupplicant.go │ │ │ │ │ ├── network.go │ │ │ │ │ └── wifi.go │ │ │ ├── api │ │ │ │ ├── cli │ │ │ │ │ ├── add_private_key.go │ │ │ │ │ ├── blocks.go │ │ │ │ │ ├── broadcast_rawtx.go │ │ │ │ │ ├── check_balance.go │ │ │ │ │ ├── cli.go │ │ │ │ │ ├── create_rawtx.go │ │ │ │ │ ├── generate_addrs.go │ │ │ │ │ ├── generate_wallet.go │ │ │ │ │ ├── last_blocks.go │ │ │ │ │ ├── list_addrs.go │ │ │ │ │ ├── list_wallets.go │ │ │ │ │ ├── outputs.go │ │ │ │ │ ├── send.go │ │ │ │ │ ├── status.go │ │ │ │ │ ├── transaction.go │ │ │ │ │ ├── version.go │ │ │ │ │ ├── wallet_dir.go │ │ │ │ │ └── wallet_history.go │ │ │ │ └── webrpc │ │ │ │ │ ├── block.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── gateway.go │ │ │ │ │ ├── outputs.go │ │ │ │ │ ├── rpc_handler.go │ │ │ │ │ ├── status.go │ │ │ │ │ ├── transaction.go │ │ │ │ │ ├── uxout.go │ │ │ │ │ └── webrpc.go │ │ │ ├── cipher │ │ │ │ ├── address.go │ │ │ │ ├── base58 │ │ │ │ │ └── base58.go │ │ │ │ ├── chacha20.go │ │ │ │ ├── chacha20 │ │ │ │ │ ├── chacha20.go │ │ │ │ │ ├── core_ref.go │ │ │ │ │ └── go-chacha20 │ │ │ │ │ │ ├── chacha │ │ │ │ │ │ ├── chacha20_krovetz.c │ │ │ │ │ │ ├── chacha20_krovetz.go │ │ │ │ │ │ ├── chacha20_krovetz.h │ │ │ │ │ │ ├── chacha20_ref.go │ │ │ │ │ │ └── const.go │ │ │ │ │ │ └── chacha20.go │ │ │ │ ├── crypto.go │ │ │ │ ├── encoder │ │ │ │ │ ├── encoder.go │ │ │ │ │ └── field.go │ │ │ │ ├── go-bip39 │ │ │ │ │ ├── bip39.go │ │ │ │ │ └── wordlist.go │ │ │ │ ├── hash.go │ │ │ │ ├── ripemd160 │ │ │ │ │ ├── ripemd160block.go │ │ │ │ │ └── ripmd_160.go │ │ │ │ └── secp256k1-go │ │ │ │ │ ├── secp256_rand.go │ │ │ │ │ ├── secp256k1-go2 │ │ │ │ │ ├── ec.go │ │ │ │ │ ├── field.go │ │ │ │ │ ├── num.go │ │ │ │ │ ├── secp256k1.go │ │ │ │ │ ├── sig.go │ │ │ │ │ ├── xy.go │ │ │ │ │ ├── xyz.go │ │ │ │ │ ├── z_consts.go │ │ │ │ │ └── z_init.go │ │ │ │ │ └── secp256k1.go │ │ │ ├── coin │ │ │ │ ├── block.go │ │ │ │ ├── outputs.go │ │ │ │ ├── transactions.go │ │ │ │ └── unspent_pool.go │ │ │ ├── consensus │ │ │ │ ├── blockstat.go │ │ │ │ ├── connection_manager.go │ │ │ │ ├── consensus.go │ │ │ │ ├── example │ │ │ │ │ ├── example.go │ │ │ │ │ ├── example_gnet.go │ │ │ │ │ └── example_minimal.go │ │ │ │ ├── participant.go │ │ │ │ └── public_broadcast_channel │ │ │ │ │ └── public_broadcast_channel.go │ │ │ ├── daemon │ │ │ │ ├── daemon.go │ │ │ │ ├── gateway.go │ │ │ │ ├── gnet │ │ │ │ │ ├── dispatcher.go │ │ │ │ │ ├── message.go │ │ │ │ │ ├── pool.go │ │ │ │ │ └── utp │ │ │ │ │ │ ├── cmd │ │ │ │ │ │ └── ucat │ │ │ │ │ │ │ └── ucat.go │ │ │ │ │ │ ├── status.go │ │ │ │ │ │ └── utp.go │ │ │ │ ├── messages.go │ │ │ │ ├── peers.go │ │ │ │ ├── pex │ │ │ │ │ └── pex.go │ │ │ │ ├── pool.go │ │ │ │ ├── rpc.go │ │ │ │ ├── storage.go │ │ │ │ └── visor.go │ │ │ ├── gui │ │ │ │ ├── api.go │ │ │ │ ├── blockchain.go │ │ │ │ ├── explorer.go │ │ │ │ ├── http.go │ │ │ │ ├── network.go │ │ │ │ ├── transaction.go │ │ │ │ ├── uxout.go │ │ │ │ └── wallet.go │ │ │ ├── mesh │ │ │ │ ├── app │ │ │ │ │ ├── app.go │ │ │ │ │ ├── listen.go │ │ │ │ │ ├── local_client.go │ │ │ │ │ ├── local_server.go │ │ │ │ │ ├── proxy_back.go │ │ │ │ │ ├── proxy_front.go │ │ │ │ │ ├── socks_back.go │ │ │ │ │ ├── socks_front.go │ │ │ │ │ ├── ulimit.go │ │ │ │ │ ├── viscript.go │ │ │ │ │ ├── vpn_back.go │ │ │ │ │ └── vpn_front.go │ │ │ │ ├── cmd │ │ │ │ │ ├── benchmarks │ │ │ │ │ │ └── overall.go │ │ │ │ │ ├── integration │ │ │ │ │ │ └── integration.go │ │ │ │ │ ├── ping │ │ │ │ │ │ └── ping.go │ │ │ │ │ ├── rpc │ │ │ │ │ │ ├── cli │ │ │ │ │ │ │ └── cli.go │ │ │ │ │ │ └── srv │ │ │ │ │ │ │ └── rpc_run.go │ │ │ │ │ ├── socks-vpn │ │ │ │ │ │ └── socks-vpn.go │ │ │ │ │ ├── socks │ │ │ │ │ │ └── socks.go │ │ │ │ │ └── vpn │ │ │ │ │ │ └── vpn.go │ │ │ │ ├── messages │ │ │ │ │ ├── config.go │ │ │ │ │ ├── constants.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── events.go │ │ │ │ │ ├── id.go │ │ │ │ │ ├── interfaces.go │ │ │ │ │ ├── loglevels.go │ │ │ │ │ ├── messages.go │ │ │ │ │ ├── names.go │ │ │ │ │ ├── peer.go │ │ │ │ │ ├── route_rule.go │ │ │ │ │ ├── serializer.go │ │ │ │ │ └── utils.go │ │ │ │ ├── node │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── control_channel.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── node_4test.go │ │ │ │ │ ├── node_app.go │ │ │ │ │ ├── node_config.go │ │ │ │ │ ├── node_control.go │ │ │ │ │ ├── node_routing.go │ │ │ │ │ ├── node_transports.go │ │ │ │ │ └── viscript.go │ │ │ │ ├── nodemanager │ │ │ │ │ ├── build_route.go │ │ │ │ │ ├── control_messages.go │ │ │ │ │ ├── dns.go │ │ │ │ │ ├── messaging_server.go │ │ │ │ │ ├── node_record.go │ │ │ │ │ ├── nodemanager.go │ │ │ │ │ ├── nodemanager_4test.go │ │ │ │ │ ├── ports.go │ │ │ │ │ ├── route_graph.go │ │ │ │ │ ├── rpc_client.go │ │ │ │ │ ├── rpc_receiver.go │ │ │ │ │ ├── rpc_server.go │ │ │ │ │ ├── transport_factory.go │ │ │ │ │ ├── transport_record.go │ │ │ │ │ └── viscript.go │ │ │ │ ├── proxy │ │ │ │ │ └── go-socks5 │ │ │ │ │ │ ├── auth.go │ │ │ │ │ │ ├── credentials.go │ │ │ │ │ │ ├── request.go │ │ │ │ │ │ ├── resolver.go │ │ │ │ │ │ ├── ruleset.go │ │ │ │ │ │ └── socks5.go │ │ │ │ ├── transport │ │ │ │ │ ├── congestion.go │ │ │ │ │ ├── transport.go │ │ │ │ │ ├── transport_info.go │ │ │ │ │ ├── udp_transport.go │ │ │ │ │ └── workers.go │ │ │ │ └── viscript │ │ │ │ │ ├── resources.go │ │ │ │ │ └── viscript.go │ │ │ ├── util │ │ │ │ ├── cert.go │ │ │ │ ├── file.go │ │ │ │ ├── http │ │ │ │ │ ├── error.go │ │ │ │ │ ├── http.go │ │ │ │ │ └── json.go │ │ │ │ ├── logging.go │ │ │ │ ├── time.go │ │ │ │ └── web_browser.go │ │ │ ├── visor │ │ │ │ ├── blockchain.go │ │ │ │ ├── blockchain_parser.go │ │ │ │ ├── blockdb │ │ │ │ │ ├── block_tree.go │ │ │ │ │ ├── blockdb.go │ │ │ │ │ └── blocksigs.go │ │ │ │ ├── bucket │ │ │ │ │ └── bucket.go │ │ │ │ ├── historydb │ │ │ │ │ ├── address.go │ │ │ │ │ ├── historydb.go │ │ │ │ │ ├── output.go │ │ │ │ │ └── transaction.go │ │ │ │ ├── readable.go │ │ │ │ ├── rpc.go │ │ │ │ ├── spend.go │ │ │ │ ├── unconfirmed.go │ │ │ │ └── visor.go │ │ │ └── wallet │ │ │ │ ├── balance.go │ │ │ │ ├── deterministic.go │ │ │ │ ├── entry.go │ │ │ │ ├── notes.go │ │ │ │ ├── readable.go │ │ │ │ ├── wallet.go │ │ │ │ └── wallets.go │ │ │ └── vendor │ │ │ ├── github.com │ │ │ ├── BurntSushi │ │ │ │ └── toml │ │ │ │ │ ├── cmd │ │ │ │ │ ├── toml-test-decoder │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── toml-test-encoder │ │ │ │ │ │ └── main.go │ │ │ │ │ └── tomlv │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── decode_meta.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── encoding_types.go │ │ │ │ │ ├── encoding_types_1.1.go │ │ │ │ │ ├── lex.go │ │ │ │ │ ├── parse.go │ │ │ │ │ ├── type_check.go │ │ │ │ │ └── type_fields.go │ │ │ ├── RoaringBitmap │ │ │ │ └── roaring │ │ │ │ │ ├── arraycontainer.go │ │ │ │ │ ├── bitmapcontainer.go │ │ │ │ │ ├── fastaggregation.go │ │ │ │ │ ├── popcnt.go │ │ │ │ │ ├── popcnt_amd64.s │ │ │ │ │ ├── popcnt_asm.go │ │ │ │ │ ├── popcnt_generic.go │ │ │ │ │ ├── priorityqueue.go │ │ │ │ │ ├── roaring.go │ │ │ │ │ ├── roaringarray.go │ │ │ │ │ ├── serialization_generic.go │ │ │ │ │ ├── serialization_littleendian.go │ │ │ │ │ ├── setutil.go │ │ │ │ │ ├── shortiterator.go │ │ │ │ │ ├── smat.go │ │ │ │ │ └── util.go │ │ │ ├── anacrolix │ │ │ │ ├── envpprof │ │ │ │ │ └── envpprof.go │ │ │ │ ├── missinggo │ │ │ │ │ ├── addr.go │ │ │ │ │ ├── atime.go │ │ │ │ │ ├── atime_atim.go │ │ │ │ │ ├── atime_atimespec.go │ │ │ │ │ ├── atime_plan9.go │ │ │ │ │ ├── atime_windows.go │ │ │ │ │ ├── bitmap │ │ │ │ │ │ └── bitmap.go │ │ │ │ │ ├── chancond.go │ │ │ │ │ ├── chans │ │ │ │ │ │ └── drain.go │ │ │ │ │ ├── cmd │ │ │ │ │ │ ├── filecache │ │ │ │ │ │ │ └── main.go │ │ │ │ │ │ ├── go-env │ │ │ │ │ │ │ └── main.go │ │ │ │ │ │ ├── http-file-server │ │ │ │ │ │ │ └── main.go │ │ │ │ │ │ ├── nop │ │ │ │ │ │ │ └── main.go │ │ │ │ │ │ ├── query-escape │ │ │ │ │ │ │ └── main.go │ │ │ │ │ │ └── query-unescape │ │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── copy.go │ │ │ │ │ ├── croak.go │ │ │ │ │ ├── ctrlflow │ │ │ │ │ │ └── ctrlflow.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── docopt │ │ │ │ │ │ └── docopt.go │ │ │ │ │ ├── empty_value.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── event_synchronized.go │ │ │ │ │ ├── expvarIndentMap.go │ │ │ │ │ ├── filecache │ │ │ │ │ │ ├── cache.go │ │ │ │ │ │ ├── file.go │ │ │ │ │ │ ├── fs.go │ │ │ │ │ │ ├── lruitems.go │ │ │ │ │ │ └── uniform.go │ │ │ │ │ ├── flag.go │ │ │ │ │ ├── fs.go │ │ │ │ │ ├── hostmaybeport.go │ │ │ │ │ ├── hostport.go │ │ │ │ │ ├── http.go │ │ │ │ │ ├── httpfile │ │ │ │ │ │ ├── defaultfs.go │ │ │ │ │ │ ├── file.go │ │ │ │ │ │ ├── fs.go │ │ │ │ │ │ └── misc.go │ │ │ │ │ ├── httpmux │ │ │ │ │ │ └── httpmux.go │ │ │ │ │ ├── httpresponsestatus.go │ │ │ │ │ ├── httptoo │ │ │ │ │ │ ├── bytes_content_range.go │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── gzip.go │ │ │ │ │ │ ├── httptoo.go │ │ │ │ │ │ ├── inproc_roundtrip.go │ │ │ │ │ │ ├── middleware.go │ │ │ │ │ │ ├── reverse_proxy.go │ │ │ │ │ │ └── url.go │ │ │ │ │ ├── inherit.go │ │ │ │ │ ├── inproc │ │ │ │ │ │ └── inproc.go │ │ │ │ │ ├── ioutil.go │ │ │ │ │ ├── itertools │ │ │ │ │ │ ├── groupby.go │ │ │ │ │ │ ├── iterable.go │ │ │ │ │ │ ├── iterator.go │ │ │ │ │ │ └── iterutils.go │ │ │ │ │ ├── jitter.go │ │ │ │ │ ├── limitlen.go │ │ │ │ │ ├── max.go │ │ │ │ │ ├── monotonic.go │ │ │ │ │ ├── openflags.go │ │ │ │ │ ├── orderedmap │ │ │ │ │ │ ├── google_btree.go │ │ │ │ │ │ ├── orderedmap.go │ │ │ │ │ │ └── skiplist.go │ │ │ │ │ ├── path.go │ │ │ │ │ ├── perf │ │ │ │ │ │ ├── mutex.go │ │ │ │ │ │ └── perf.go │ │ │ │ │ ├── pproffd │ │ │ │ │ │ └── pproffd.go │ │ │ │ │ ├── prioritybitmap │ │ │ │ │ │ ├── iter.go │ │ │ │ │ │ └── prioritybitmap.go │ │ │ │ │ ├── pubsub │ │ │ │ │ │ └── pubsub.go │ │ │ │ │ ├── resource │ │ │ │ │ │ ├── http.go │ │ │ │ │ │ ├── osfile.go │ │ │ │ │ │ ├── provider.go │ │ │ │ │ │ └── resource.go │ │ │ │ │ ├── rle.go │ │ │ │ │ ├── section_read_seeker.go │ │ │ │ │ ├── section_writer.go │ │ │ │ │ ├── selfcert.go │ │ │ │ │ ├── singleflight.go │ │ │ │ │ ├── slices │ │ │ │ │ │ ├── cast.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── map.go │ │ │ │ │ │ ├── sort.go │ │ │ │ │ │ └── sorter.go │ │ │ │ │ ├── stack.go │ │ │ │ │ ├── strbool.go │ │ │ │ │ ├── sync.go │ │ │ │ │ ├── testing.go │ │ │ │ │ ├── timer.go │ │ │ │ │ ├── units.go │ │ │ │ │ ├── url.go │ │ │ │ │ ├── wait_event.go │ │ │ │ │ └── wolf.go │ │ │ │ ├── sync │ │ │ │ │ ├── rwmutex.go │ │ │ │ │ └── sync.go │ │ │ │ ├── tagflag │ │ │ │ │ ├── arg.go │ │ │ │ │ ├── arity.go │ │ │ │ │ ├── builtin.go │ │ │ │ │ ├── bytes.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── marshalers.go │ │ │ │ │ ├── misc.go │ │ │ │ │ ├── parseopt.go │ │ │ │ │ ├── parser.go │ │ │ │ │ ├── tagflag.go │ │ │ │ │ └── usage.go │ │ │ │ └── utp │ │ │ │ │ ├── addr.go │ │ │ │ │ ├── cmd │ │ │ │ │ └── ucat │ │ │ │ │ │ └── ucat.go │ │ │ │ │ ├── conn.go │ │ │ │ │ ├── deadlines.go │ │ │ │ │ ├── expvar.go │ │ │ │ │ ├── header.go │ │ │ │ │ ├── nop.go │ │ │ │ │ ├── send.go │ │ │ │ │ ├── socket.go │ │ │ │ │ ├── status.go │ │ │ │ │ └── utp.go │ │ │ ├── boltdb │ │ │ │ └── bolt │ │ │ │ │ ├── bolt_386.go │ │ │ │ │ ├── bolt_amd64.go │ │ │ │ │ ├── bolt_arm.go │ │ │ │ │ ├── bolt_arm64.go │ │ │ │ │ ├── bolt_linux.go │ │ │ │ │ ├── bolt_openbsd.go │ │ │ │ │ ├── bolt_ppc.go │ │ │ │ │ ├── bolt_ppc64.go │ │ │ │ │ ├── bolt_ppc64le.go │ │ │ │ │ ├── bolt_s390x.go │ │ │ │ │ ├── bolt_unix.go │ │ │ │ │ ├── bolt_unix_solaris.go │ │ │ │ │ ├── bolt_windows.go │ │ │ │ │ ├── boltsync_unix.go │ │ │ │ │ ├── bucket.go │ │ │ │ │ ├── cmd │ │ │ │ │ └── bolt │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── cursor.go │ │ │ │ │ ├── db.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── freelist.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── page.go │ │ │ │ │ └── tx.go │ │ │ ├── bradfitz │ │ │ │ └── iter │ │ │ │ │ └── iter.go │ │ │ ├── ccding │ │ │ │ └── go-stun │ │ │ │ │ └── stun │ │ │ │ │ ├── attribute.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── const.go │ │ │ │ │ ├── discover.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── host.go │ │ │ │ │ └── packet.go │ │ │ ├── cznic │ │ │ │ └── b │ │ │ │ │ ├── btree.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── example │ │ │ │ │ └── int.go │ │ │ ├── docopt │ │ │ │ └── docopt-go │ │ │ │ │ ├── docopt.go │ │ │ │ │ └── examples │ │ │ │ │ ├── arguments │ │ │ │ │ └── arguments_example.go │ │ │ │ │ ├── calculator │ │ │ │ │ └── calculator_example.go │ │ │ │ │ ├── config_file │ │ │ │ │ └── config_file_example.go │ │ │ │ │ ├── counted │ │ │ │ │ └── counted_example.go │ │ │ │ │ ├── git │ │ │ │ │ ├── branch │ │ │ │ │ │ └── git_branch.go │ │ │ │ │ ├── checkout │ │ │ │ │ │ └── git_checkout.go │ │ │ │ │ ├── clone │ │ │ │ │ │ └── git_clone.go │ │ │ │ │ ├── git.go │ │ │ │ │ ├── push │ │ │ │ │ │ └── git_push.go │ │ │ │ │ └── remote │ │ │ │ │ │ └── git_remote.go │ │ │ │ │ ├── naval_fate │ │ │ │ │ └── naval_fate.go │ │ │ │ │ ├── odd_even │ │ │ │ │ └── odd_even_example.go │ │ │ │ │ ├── options │ │ │ │ │ └── options_example.go │ │ │ │ │ ├── options_shortcut │ │ │ │ │ └── options_shortcut_example.go │ │ │ │ │ ├── quick │ │ │ │ │ └── quick_example.go │ │ │ │ │ └── type_assert │ │ │ │ │ └── type_assert_example.go │ │ │ ├── dustin │ │ │ │ └── go-humanize │ │ │ │ │ ├── big.go │ │ │ │ │ ├── bigbytes.go │ │ │ │ │ ├── bytes.go │ │ │ │ │ ├── comma.go │ │ │ │ │ ├── commaf.go │ │ │ │ │ ├── ftoa.go │ │ │ │ │ ├── humanize.go │ │ │ │ │ ├── number.go │ │ │ │ │ ├── ordinals.go │ │ │ │ │ ├── si.go │ │ │ │ │ └── times.go │ │ │ ├── golang │ │ │ │ ├── glog │ │ │ │ │ ├── glog.go │ │ │ │ │ └── glog_file.go │ │ │ │ ├── groupcache │ │ │ │ │ └── lru │ │ │ │ │ │ └── lru.go │ │ │ │ └── protobuf │ │ │ │ │ ├── jsonpb │ │ │ │ │ ├── jsonpb.go │ │ │ │ │ └── jsonpb_test_proto │ │ │ │ │ │ ├── more_test_objects.pb.go │ │ │ │ │ │ └── test_objects.pb.go │ │ │ │ │ ├── proto │ │ │ │ │ ├── clone.go │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── equal.go │ │ │ │ │ ├── extensions.go │ │ │ │ │ ├── lib.go │ │ │ │ │ ├── message_set.go │ │ │ │ │ ├── pointer_reflect.go │ │ │ │ │ ├── pointer_unsafe.go │ │ │ │ │ ├── properties.go │ │ │ │ │ ├── proto3_proto │ │ │ │ │ │ └── proto3.pb.go │ │ │ │ │ ├── text.go │ │ │ │ │ └── text_parser.go │ │ │ │ │ ├── protoc-gen-go │ │ │ │ │ ├── descriptor │ │ │ │ │ │ └── descriptor.pb.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generator │ │ │ │ │ │ └── generator.go │ │ │ │ │ ├── grpc │ │ │ │ │ │ └── grpc.go │ │ │ │ │ ├── link_grpc.go │ │ │ │ │ ├── main.go │ │ │ │ │ └── plugin │ │ │ │ │ │ └── plugin.pb.go │ │ │ │ │ └── ptypes │ │ │ │ │ ├── any.go │ │ │ │ │ ├── any │ │ │ │ │ └── any.pb.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── duration.go │ │ │ │ │ ├── duration │ │ │ │ │ └── duration.pb.go │ │ │ │ │ ├── empty │ │ │ │ │ └── empty.pb.go │ │ │ │ │ ├── struct │ │ │ │ │ └── struct.pb.go │ │ │ │ │ ├── timestamp.go │ │ │ │ │ ├── timestamp │ │ │ │ │ └── timestamp.pb.go │ │ │ │ │ └── wrappers │ │ │ │ │ └── wrappers.pb.go │ │ │ ├── google │ │ │ │ └── btree │ │ │ │ │ ├── btree.go │ │ │ │ │ └── btree_mem.go │ │ │ ├── huandu │ │ │ │ └── xstrings │ │ │ │ │ ├── common.go │ │ │ │ │ ├── convert.go │ │ │ │ │ ├── count.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── format.go │ │ │ │ │ ├── manipulate.go │ │ │ │ │ └── translate.go │ │ │ ├── jackpal │ │ │ │ └── bencode-go │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── parse.go │ │ │ │ │ └── struct.go │ │ │ ├── mitchellh │ │ │ │ ├── gox │ │ │ │ │ ├── go.go │ │ │ │ │ ├── main.go │ │ │ │ │ ├── main_osarch.go │ │ │ │ │ ├── platform.go │ │ │ │ │ ├── platform_flag.go │ │ │ │ │ └── toolchain.go │ │ │ │ └── iochan │ │ │ │ │ └── iochan.go │ │ │ ├── mschoch │ │ │ │ └── smat │ │ │ │ │ ├── actionseq.go │ │ │ │ │ ├── examples │ │ │ │ │ └── bolt │ │ │ │ │ │ └── boltsmat.go │ │ │ │ │ └── smat.go │ │ │ ├── nictuku │ │ │ │ ├── dht │ │ │ │ │ ├── arena.go │ │ │ │ │ ├── dht.go │ │ │ │ │ ├── examples │ │ │ │ │ │ └── find_infohash_and_wait │ │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ │ └── main6.go │ │ │ │ │ ├── krpc.go │ │ │ │ │ ├── peer_store.go │ │ │ │ │ ├── routing.go │ │ │ │ │ ├── routing_table.go │ │ │ │ │ └── store.go │ │ │ │ └── nettools │ │ │ │ │ ├── addresses.go │ │ │ │ │ ├── ratelimit.go │ │ │ │ │ └── tunnel.go │ │ │ ├── op │ │ │ │ └── go-logging │ │ │ │ │ ├── backend.go │ │ │ │ │ ├── examples │ │ │ │ │ └── example.go │ │ │ │ │ ├── format.go │ │ │ │ │ ├── level.go │ │ │ │ │ ├── log_nix.go │ │ │ │ │ ├── log_windows.go │ │ │ │ │ ├── logger.go │ │ │ │ │ ├── memory.go │ │ │ │ │ ├── multi.go │ │ │ │ │ ├── syslog.go │ │ │ │ │ └── syslog_fallback.go │ │ │ ├── petar │ │ │ │ └── GoLLRB │ │ │ │ │ └── llrb │ │ │ │ │ ├── avgvar.go │ │ │ │ │ ├── iterator.go │ │ │ │ │ ├── llrb-stats.go │ │ │ │ │ ├── llrb.go │ │ │ │ │ └── util.go │ │ │ ├── ryszard │ │ │ │ └── goskiplist │ │ │ │ │ └── skiplist │ │ │ │ │ └── skiplist.go │ │ │ ├── satori │ │ │ │ └── go.uuid │ │ │ │ │ └── uuid.go │ │ │ ├── songgao │ │ │ │ └── water │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── if.go │ │ │ │ │ ├── if_unix.go │ │ │ │ │ ├── if_windows.go │ │ │ │ │ ├── params_others.go │ │ │ │ │ ├── params_unix.go │ │ │ │ │ ├── params_windows.go │ │ │ │ │ ├── syscalls_darwin.go │ │ │ │ │ ├── syscalls_linux.go │ │ │ │ │ ├── syscalls_other.go │ │ │ │ │ ├── syscalls_windows.go │ │ │ │ │ └── waterutil │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── ethertypes.go │ │ │ │ │ ├── ip_protocols.go │ │ │ │ │ ├── tap.go │ │ │ │ │ ├── tun.go │ │ │ │ │ └── tun_ipv4.go │ │ │ ├── stretchr │ │ │ │ └── testify │ │ │ │ │ ├── assert │ │ │ │ │ ├── assertion_forward.go │ │ │ │ │ ├── assertions.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── forward_assertions.go │ │ │ │ │ └── http_assertions.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── http │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── test_response_writer.go │ │ │ │ │ └── test_round_tripper.go │ │ │ │ │ ├── mock │ │ │ │ │ ├── doc.go │ │ │ │ │ └── mock.go │ │ │ │ │ ├── require │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── forward_requirements.go │ │ │ │ │ ├── require.go │ │ │ │ │ ├── require_forward.go │ │ │ │ │ └── requirements.go │ │ │ │ │ ├── suite │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── interfaces.go │ │ │ │ │ └── suite.go │ │ │ │ │ └── vendor │ │ │ │ │ └── github.com │ │ │ │ │ ├── davecgh │ │ │ │ │ └── go-spew │ │ │ │ │ │ └── spew │ │ │ │ │ │ ├── bypass.go │ │ │ │ │ │ ├── bypasssafe.go │ │ │ │ │ │ ├── common.go │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── dump.go │ │ │ │ │ │ ├── format.go │ │ │ │ │ │ └── spew.go │ │ │ │ │ ├── pmezard │ │ │ │ │ └── go-difflib │ │ │ │ │ │ └── difflib │ │ │ │ │ │ └── difflib.go │ │ │ │ │ └── stretchr │ │ │ │ │ └── objx │ │ │ │ │ ├── accessors.go │ │ │ │ │ ├── constants.go │ │ │ │ │ ├── conversions.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── map.go │ │ │ │ │ ├── mutations.go │ │ │ │ │ ├── security.go │ │ │ │ │ ├── tests.go │ │ │ │ │ ├── type_specific_codegen.go │ │ │ │ │ └── value.go │ │ │ ├── tang0th │ │ │ │ └── go-chacha20 │ │ │ │ │ └── chacha │ │ │ │ │ ├── chacha20_krovetz.c │ │ │ │ │ ├── chacha20_krovetz.go │ │ │ │ │ ├── chacha20_krovetz.h │ │ │ │ │ ├── chacha20_ref.go │ │ │ │ │ └── const.go │ │ │ ├── toqueteos │ │ │ │ └── webbrowser │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── examples │ │ │ │ │ └── simple.go │ │ │ │ │ └── webbrowser.go │ │ │ ├── tyler-smith │ │ │ │ └── go-bip39 │ │ │ │ │ ├── bip39.go │ │ │ │ │ └── wordlist.go │ │ │ ├── urfave │ │ │ │ └── cli │ │ │ │ │ ├── altsrc │ │ │ │ │ ├── altsrc.go │ │ │ │ │ ├── flag.go │ │ │ │ │ ├── flag_generated.go │ │ │ │ │ ├── input_source_context.go │ │ │ │ │ ├── map_input_source.go │ │ │ │ │ ├── toml_file_loader.go │ │ │ │ │ └── yaml_file_loader.go │ │ │ │ │ ├── app.go │ │ │ │ │ ├── category.go │ │ │ │ │ ├── cli.go │ │ │ │ │ ├── command.go │ │ │ │ │ ├── context.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── flag.go │ │ │ │ │ ├── flag_generated.go │ │ │ │ │ ├── funcs.go │ │ │ │ │ └── help.go │ │ │ └── willf │ │ │ │ └── bitset │ │ │ │ ├── bitset.go │ │ │ │ ├── popcnt.go │ │ │ │ ├── popcnt_amd64.go │ │ │ │ ├── popcnt_amd64.s │ │ │ │ └── popcnt_generic.go │ │ │ ├── golang.org │ │ │ └── x │ │ │ │ ├── crypto │ │ │ │ └── pbkdf2 │ │ │ │ │ └── pbkdf2.go │ │ │ │ ├── net │ │ │ │ ├── context │ │ │ │ │ ├── context.go │ │ │ │ │ ├── ctxhttp │ │ │ │ │ │ ├── ctxhttp.go │ │ │ │ │ │ └── ctxhttp_pre17.go │ │ │ │ │ ├── go17.go │ │ │ │ │ └── pre_go17.go │ │ │ │ └── proxy │ │ │ │ │ ├── direct.go │ │ │ │ │ ├── per_host.go │ │ │ │ │ ├── proxy.go │ │ │ │ │ └── socks5.go │ │ │ │ └── sys │ │ │ │ ├── unix │ │ │ │ ├── asm.s │ │ │ │ ├── asm_darwin_386.s │ │ │ │ ├── asm_darwin_amd64.s │ │ │ │ ├── asm_darwin_arm.s │ │ │ │ ├── asm_darwin_arm64.s │ │ │ │ ├── asm_dragonfly_amd64.s │ │ │ │ ├── asm_freebsd_386.s │ │ │ │ ├── asm_freebsd_amd64.s │ │ │ │ ├── asm_freebsd_arm.s │ │ │ │ ├── asm_linux_386.s │ │ │ │ ├── asm_linux_amd64.s │ │ │ │ ├── asm_linux_arm.s │ │ │ │ ├── asm_linux_arm64.s │ │ │ │ ├── asm_linux_mips64x.s │ │ │ │ ├── asm_linux_mipsx.s │ │ │ │ ├── asm_linux_ppc64x.s │ │ │ │ ├── asm_linux_s390x.s │ │ │ │ ├── asm_netbsd_386.s │ │ │ │ ├── asm_netbsd_amd64.s │ │ │ │ ├── asm_netbsd_arm.s │ │ │ │ ├── asm_openbsd_386.s │ │ │ │ ├── asm_openbsd_amd64.s │ │ │ │ ├── asm_solaris_amd64.s │ │ │ │ ├── bluetooth_linux.go │ │ │ │ ├── constants.go │ │ │ │ ├── env_unix.go │ │ │ │ ├── env_unset.go │ │ │ │ ├── flock.go │ │ │ │ ├── flock_linux_32bit.go │ │ │ │ ├── gccgo.go │ │ │ │ ├── gccgo_c.c │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ ├── gccgo_linux_sparc64.go │ │ │ │ ├── mkpost.go │ │ │ │ ├── race.go │ │ │ │ ├── race0.go │ │ │ │ ├── sockcmsg_linux.go │ │ │ │ ├── sockcmsg_unix.go │ │ │ │ ├── str.go │ │ │ │ ├── syscall.go │ │ │ │ ├── syscall_bsd.go │ │ │ │ ├── syscall_darwin.go │ │ │ │ ├── syscall_darwin_386.go │ │ │ │ ├── syscall_darwin_amd64.go │ │ │ │ ├── syscall_darwin_arm.go │ │ │ │ ├── syscall_darwin_arm64.go │ │ │ │ ├── syscall_dragonfly.go │ │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ │ ├── syscall_freebsd.go │ │ │ │ ├── syscall_freebsd_386.go │ │ │ │ ├── syscall_freebsd_amd64.go │ │ │ │ ├── syscall_freebsd_arm.go │ │ │ │ ├── syscall_linux.go │ │ │ │ ├── syscall_linux_386.go │ │ │ │ ├── syscall_linux_amd64.go │ │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ │ ├── syscall_linux_arm.go │ │ │ │ ├── syscall_linux_arm64.go │ │ │ │ ├── syscall_linux_mips64x.go │ │ │ │ ├── syscall_linux_mipsx.go │ │ │ │ ├── syscall_linux_ppc64x.go │ │ │ │ ├── syscall_linux_s390x.go │ │ │ │ ├── syscall_linux_sparc64.go │ │ │ │ ├── syscall_netbsd.go │ │ │ │ ├── syscall_netbsd_386.go │ │ │ │ ├── syscall_netbsd_amd64.go │ │ │ │ ├── syscall_netbsd_arm.go │ │ │ │ ├── syscall_no_getwd.go │ │ │ │ ├── syscall_openbsd.go │ │ │ │ ├── syscall_openbsd_386.go │ │ │ │ ├── syscall_openbsd_amd64.go │ │ │ │ ├── syscall_solaris.go │ │ │ │ ├── syscall_solaris_amd64.go │ │ │ │ ├── syscall_unix.go │ │ │ │ ├── syscall_unix_gc.go │ │ │ │ ├── types_darwin.go │ │ │ │ ├── types_dragonfly.go │ │ │ │ ├── types_freebsd.go │ │ │ │ ├── types_linux.go │ │ │ │ ├── types_netbsd.go │ │ │ │ ├── types_openbsd.go │ │ │ │ ├── types_solaris.go │ │ │ │ ├── zerrors_darwin_386.go │ │ │ │ ├── zerrors_darwin_amd64.go │ │ │ │ ├── zerrors_darwin_arm.go │ │ │ │ ├── zerrors_darwin_arm64.go │ │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ │ ├── zerrors_freebsd_386.go │ │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ │ ├── zerrors_freebsd_arm.go │ │ │ │ ├── zerrors_linux_386.go │ │ │ │ ├── zerrors_linux_amd64.go │ │ │ │ ├── zerrors_linux_arm.go │ │ │ │ ├── zerrors_linux_arm64.go │ │ │ │ ├── zerrors_linux_mips.go │ │ │ │ ├── zerrors_linux_mips64.go │ │ │ │ ├── zerrors_linux_mips64le.go │ │ │ │ ├── zerrors_linux_mipsle.go │ │ │ │ ├── zerrors_linux_ppc64.go │ │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ │ ├── zerrors_linux_s390x.go │ │ │ │ ├── zerrors_linux_sparc64.go │ │ │ │ ├── zerrors_netbsd_386.go │ │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ │ ├── zerrors_netbsd_arm.go │ │ │ │ ├── zerrors_openbsd_386.go │ │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ │ ├── zerrors_solaris_amd64.go │ │ │ │ ├── zsyscall_darwin_386.go │ │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ │ ├── zsyscall_darwin_arm.go │ │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ │ ├── zsyscall_freebsd_386.go │ │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ │ ├── zsyscall_linux_386.go │ │ │ │ ├── zsyscall_linux_amd64.go │ │ │ │ ├── zsyscall_linux_arm.go │ │ │ │ ├── zsyscall_linux_arm64.go │ │ │ │ ├── zsyscall_linux_mips.go │ │ │ │ ├── zsyscall_linux_mips64.go │ │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ │ ├── zsyscall_linux_s390x.go │ │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ │ ├── zsyscall_netbsd_386.go │ │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ │ ├── zsyscall_openbsd_386.go │ │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ │ ├── zsysctl_openbsd.go │ │ │ │ ├── zsysnum_darwin_386.go │ │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ │ ├── zsysnum_darwin_arm.go │ │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ │ ├── zsysnum_freebsd_386.go │ │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ │ ├── zsysnum_linux_386.go │ │ │ │ ├── zsysnum_linux_amd64.go │ │ │ │ ├── zsysnum_linux_arm.go │ │ │ │ ├── zsysnum_linux_arm64.go │ │ │ │ ├── zsysnum_linux_mips.go │ │ │ │ ├── zsysnum_linux_mips64.go │ │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ │ ├── zsysnum_linux_s390x.go │ │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ │ ├── zsysnum_netbsd_386.go │ │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ │ ├── zsysnum_openbsd_386.go │ │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ │ ├── zsysnum_solaris_amd64.go │ │ │ │ ├── ztypes_darwin_386.go │ │ │ │ ├── ztypes_darwin_amd64.go │ │ │ │ ├── ztypes_darwin_arm.go │ │ │ │ ├── ztypes_darwin_arm64.go │ │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ │ ├── ztypes_freebsd_386.go │ │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ │ ├── ztypes_freebsd_arm.go │ │ │ │ ├── ztypes_linux_386.go │ │ │ │ ├── ztypes_linux_amd64.go │ │ │ │ ├── ztypes_linux_arm.go │ │ │ │ ├── ztypes_linux_arm64.go │ │ │ │ ├── ztypes_linux_mips.go │ │ │ │ ├── ztypes_linux_mips64.go │ │ │ │ ├── ztypes_linux_mips64le.go │ │ │ │ ├── ztypes_linux_mipsle.go │ │ │ │ ├── ztypes_linux_ppc64.go │ │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ │ ├── ztypes_linux_s390x.go │ │ │ │ ├── ztypes_linux_sparc64.go │ │ │ │ ├── ztypes_netbsd_386.go │ │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ │ ├── ztypes_netbsd_arm.go │ │ │ │ ├── ztypes_openbsd_386.go │ │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ │ └── ztypes_solaris_amd64.go │ │ │ │ └── windows │ │ │ │ ├── asm_windows_386.s │ │ │ │ ├── asm_windows_amd64.s │ │ │ │ ├── dll_windows.go │ │ │ │ ├── env_unset.go │ │ │ │ ├── env_windows.go │ │ │ │ ├── eventlog.go │ │ │ │ ├── exec_windows.go │ │ │ │ ├── mksyscall.go │ │ │ │ ├── race.go │ │ │ │ ├── race0.go │ │ │ │ ├── registry │ │ │ │ ├── key.go │ │ │ │ ├── mksyscall.go │ │ │ │ ├── syscall.go │ │ │ │ ├── value.go │ │ │ │ └── zsyscall_windows.go │ │ │ │ ├── security_windows.go │ │ │ │ ├── service.go │ │ │ │ ├── str.go │ │ │ │ ├── svc │ │ │ │ ├── debug │ │ │ │ │ ├── log.go │ │ │ │ │ └── service.go │ │ │ │ ├── event.go │ │ │ │ ├── eventlog │ │ │ │ │ ├── install.go │ │ │ │ │ └── log.go │ │ │ │ ├── example │ │ │ │ │ ├── beep.go │ │ │ │ │ ├── install.go │ │ │ │ │ ├── main.go │ │ │ │ │ ├── manage.go │ │ │ │ │ └── service.go │ │ │ │ ├── go12.c │ │ │ │ ├── go12.go │ │ │ │ ├── go13.go │ │ │ │ ├── mgr │ │ │ │ │ ├── config.go │ │ │ │ │ ├── mgr.go │ │ │ │ │ └── service.go │ │ │ │ ├── security.go │ │ │ │ ├── service.go │ │ │ │ ├── sys_386.s │ │ │ │ └── sys_amd64.s │ │ │ │ ├── syscall.go │ │ │ │ ├── syscall_windows.go │ │ │ │ ├── zsyscall_windows.go │ │ │ │ ├── ztypes_windows.go │ │ │ │ ├── ztypes_windows_386.go │ │ │ │ └── ztypes_windows_amd64.go │ │ │ └── gopkg.in │ │ │ ├── gcfg.v1 │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── go1_0.go │ │ │ ├── go1_2.go │ │ │ ├── read.go │ │ │ ├── scanner │ │ │ │ ├── errors.go │ │ │ │ └── scanner.go │ │ │ ├── set.go │ │ │ ├── token │ │ │ │ ├── position.go │ │ │ │ ├── serialize.go │ │ │ │ └── token.go │ │ │ └── types │ │ │ │ ├── bool.go │ │ │ │ ├── doc.go │ │ │ │ ├── enum.go │ │ │ │ ├── int.go │ │ │ │ └── scan.go │ │ │ ├── urfave │ │ │ └── cli.v1 │ │ │ │ ├── altsrc │ │ │ │ ├── altsrc.go │ │ │ │ ├── flag.go │ │ │ │ ├── flag_generated.go │ │ │ │ ├── input_source_context.go │ │ │ │ ├── map_input_source.go │ │ │ │ ├── toml_file_loader.go │ │ │ │ └── yaml_file_loader.go │ │ │ │ ├── app.go │ │ │ │ ├── category.go │ │ │ │ ├── cli.go │ │ │ │ ├── command.go │ │ │ │ ├── context.go │ │ │ │ ├── errors.go │ │ │ │ ├── flag.go │ │ │ │ ├── flag_generated.go │ │ │ │ ├── funcs.go │ │ │ │ └── help.go │ │ │ ├── warnings.v0 │ │ │ └── warnings.go │ │ │ └── yaml.v2 │ │ │ ├── apic.go │ │ │ ├── decode.go │ │ │ ├── emitterc.go │ │ │ ├── encode.go │ │ │ ├── parserc.go │ │ │ ├── readerc.go │ │ │ ├── resolve.go │ │ │ ├── scannerc.go │ │ │ ├── sorter.go │ │ │ ├── writerc.go │ │ │ ├── yaml.go │ │ │ ├── yamlh.go │ │ │ └── yamlprivateh.go │ ├── stretchr │ │ └── testify │ │ │ ├── LICENCE.txt │ │ │ ├── LICENSE │ │ │ ├── assert │ │ │ ├── assertion_forward.go │ │ │ ├── assertions.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── forward_assertions.go │ │ │ └── http_assertions.go │ │ │ ├── doc.go │ │ │ ├── http │ │ │ ├── doc.go │ │ │ ├── test_response_writer.go │ │ │ └── test_round_tripper.go │ │ │ ├── mock │ │ │ ├── doc.go │ │ │ └── mock.go │ │ │ ├── require │ │ │ ├── doc.go │ │ │ ├── forward_requirements.go │ │ │ ├── require.go │ │ │ ├── require_forward.go │ │ │ └── requirements.go │ │ │ ├── suite │ │ │ ├── doc.go │ │ │ ├── interfaces.go │ │ │ └── suite.go │ │ │ └── vendor │ │ │ └── github.com │ │ │ ├── davecgh │ │ │ └── go-spew │ │ │ │ └── spew │ │ │ │ ├── bypass.go │ │ │ │ ├── bypasssafe.go │ │ │ │ ├── common.go │ │ │ │ ├── config.go │ │ │ │ ├── doc.go │ │ │ │ ├── dump.go │ │ │ │ ├── format.go │ │ │ │ └── spew.go │ │ │ ├── pmezard │ │ │ └── go-difflib │ │ │ │ └── difflib │ │ │ │ └── difflib.go │ │ │ └── stretchr │ │ │ └── objx │ │ │ ├── accessors.go │ │ │ ├── constants.go │ │ │ ├── conversions.go │ │ │ ├── doc.go │ │ │ ├── map.go │ │ │ ├── mutations.go │ │ │ ├── security.go │ │ │ ├── tests.go │ │ │ ├── type_specific_codegen.go │ │ │ └── value.go │ ├── tyler-smith │ │ └── go-bip39 │ │ │ ├── LICENSE │ │ │ ├── bip39.go │ │ │ └── wordlist.go │ └── youtube │ │ └── vitess │ │ └── go │ │ └── cache │ │ ├── LICENSE │ │ └── lru_cache.go ├── golang.org │ └── x │ │ ├── crypto │ │ └── pbkdf2 │ │ │ ├── LICENSE │ │ │ └── pbkdf2.go │ │ └── sys │ │ └── unix │ │ ├── LICENSE │ │ ├── asm.s │ │ ├── asm_darwin_386.s │ │ ├── asm_darwin_amd64.s │ │ ├── asm_darwin_arm.s │ │ ├── asm_darwin_arm64.s │ │ ├── asm_dragonfly_amd64.s │ │ ├── asm_freebsd_386.s │ │ ├── asm_freebsd_amd64.s │ │ ├── asm_freebsd_arm.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_netbsd_386.s │ │ ├── asm_netbsd_amd64.s │ │ ├── asm_netbsd_arm.s │ │ ├── asm_openbsd_386.s │ │ ├── asm_openbsd_amd64.s │ │ ├── asm_solaris_amd64.s │ │ ├── bluetooth_linux.go │ │ ├── constants.go │ │ ├── env_unix.go │ │ ├── env_unset.go │ │ ├── flock.go │ │ ├── flock_linux_32bit.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── gccgo_linux_sparc64.go │ │ ├── mkpost.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_386.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_no_getwd.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── types_darwin.go │ │ ├── types_dragonfly.go │ │ ├── types_freebsd.go │ │ ├── types_linux.go │ │ ├── types_netbsd.go │ │ ├── types_openbsd.go │ │ ├── types_solaris.go │ │ ├── zerrors_darwin_386.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zsyscall_darwin_386.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_arm.go │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsysctl_openbsd.go │ │ ├── zsysnum_darwin_386.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_solaris_amd64.go │ │ ├── ztypes_darwin_386.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ └── ztypes_solaris_amd64.go ├── gopkg.in │ └── yaml.v2 │ │ ├── LICENSE │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go └── manifest ├── client.sh ├── cmd ├── btc │ ├── install.sh │ └── main.go ├── btc_check │ └── main.go ├── client │ └── client.go ├── decode_tx │ └── decodetx.go └── server │ └── main.go ├── server.sh ├── src ├── api │ └── mobile │ │ ├── README.md │ │ ├── api.go │ │ ├── api_test.go │ │ ├── bitcoin.go │ │ ├── coin.go │ │ ├── coiner_mock_test.go │ │ └── example │ │ └── ios │ │ └── wallet-api-test │ │ ├── README.md │ │ ├── wallet-api-test.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ └── murphy.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── murphy.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ └── wallet-api-test │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── client │ ├── account │ │ ├── account.go │ │ └── account_test.go │ ├── api │ │ ├── account.go │ │ ├── admin.go │ │ ├── api.go │ │ ├── balance.go │ │ ├── coin.go │ │ ├── deposit.go │ │ ├── order.go │ │ ├── txn.go │ │ ├── utxo.go │ │ ├── wallet.go │ │ └── withdraw.go │ ├── client.go │ ├── client_test.go │ └── router │ │ └── router.go ├── coin │ ├── aynrandcoin │ │ └── aynrandcoin.go │ ├── bitcoin │ │ ├── bitcoin.go │ │ ├── blkchninfo.go │ │ ├── blkexplr.go │ │ ├── blkexplr_test.go │ │ ├── gateway.go │ │ ├── transaction.go │ │ ├── transaction_test.go │ │ ├── utxo_manager.go │ │ └── wallet.go │ ├── coin.go │ ├── fishercoin │ │ └── fishercoin.go │ ├── lifecoin │ │ └── lifecoin.go │ ├── metalicoin │ │ └── metalicoin.go │ ├── mzcoin │ │ └── mzcoin.go │ ├── shellcoin │ │ └── shellcoin.go │ ├── skycoin │ │ ├── skycoin.go │ │ ├── skycoin_test.go │ │ ├── transaction.go │ │ ├── utxo_manager.go │ │ └── wallet.go │ └── suncoin │ │ └── suncoin.go ├── pp │ ├── gen.sh │ ├── helper.go │ ├── pp.account.pb.go │ ├── pp.account.proto │ ├── pp.admin.pb.go │ ├── pp.admin.proto │ ├── pp.balance.pb.go │ ├── pp.balance.proto │ ├── pp.coin.pb.go │ ├── pp.coin.proto │ ├── pp.common.pb.go │ ├── pp.common.proto │ ├── pp.deposit.pb.go │ ├── pp.deposit.proto │ ├── pp.encrypt.pb.go │ ├── pp.encrypt.proto │ ├── pp.order.pb.go │ ├── pp.order.proto │ ├── pp.output.pb.go │ ├── pp.output.proto │ ├── pp.request.pb.go │ ├── pp.request.proto │ ├── pp.transaction.pb.go │ ├── pp.transaction.proto │ ├── pp.utxo.pb.go │ ├── pp.utxo.proto │ ├── pp.withdrawal.pb.go │ └── pp.withdrawal.proto ├── server │ ├── README.md │ ├── account │ │ ├── account.go │ │ ├── account_test.go │ │ ├── manager.go │ │ └── manager_test.go │ ├── api │ │ ├── account.go │ │ ├── admin.go │ │ ├── api.go │ │ ├── balance.go │ │ ├── coin.go │ │ ├── deposit.go │ │ ├── order.go │ │ ├── transaction.go │ │ ├── utxos.go │ │ └── withdrawal.go │ ├── engine │ │ └── engine.go │ ├── order │ │ ├── book.go │ │ ├── book_test.go │ │ ├── id_gen.go │ │ ├── id_test.go │ │ ├── manager.go │ │ ├── manager_test.go │ │ └── order.go │ ├── router │ │ └── net.go │ ├── server.go │ ├── tests │ │ ├── api │ │ │ ├── api_test.go │ │ │ └── auth_test.go │ │ └── testhelper.go │ └── wallet.go ├── sknet │ ├── auth.go │ ├── client.go │ ├── context.go │ ├── encrypt.go │ ├── group.go │ ├── request.go │ ├── response.go │ ├── sknet.go │ └── worker.go ├── wallet │ ├── base.go │ ├── wallet.go │ ├── wallet_internal_test.go │ ├── wallet_test.go │ └── wallets.go └── web-app │ ├── http.go │ └── static │ ├── .gitignore │ ├── bs-config.json │ ├── gulpfile.ts │ ├── package.json │ ├── src │ ├── app │ │ ├── app.component.ts │ │ ├── app.html │ │ ├── index.html │ │ └── main.ts │ ├── assets │ │ ├── css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.min.css │ │ │ ├── font-awesome.min.css │ │ │ └── style.css │ │ ├── images │ │ │ ├── green.png │ │ │ └── red.png │ │ └── script │ │ │ ├── bootstrap.min.js │ │ │ ├── jQuery │ │ │ └── jQuery-2.1.4.min.js │ │ │ ├── moment.js │ │ │ └── underscore.min.js │ ├── index.html │ └── systemjs.config.js │ ├── tsconfig.json │ ├── tslint.json │ └── typings.json └── vendor ├── github.com ├── boltdb │ └── bolt │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── bolt_386.go │ │ ├── bolt_amd64.go │ │ ├── bolt_arm.go │ │ ├── bolt_arm64.go │ │ ├── bolt_linux.go │ │ ├── bolt_openbsd.go │ │ ├── bolt_ppc.go │ │ ├── bolt_ppc64.go │ │ ├── bolt_ppc64le.go │ │ ├── bolt_s390x.go │ │ ├── bolt_unix.go │ │ ├── bolt_unix_solaris.go │ │ ├── bolt_windows.go │ │ ├── boltsync_unix.go │ │ ├── bucket.go │ │ ├── bucket_test.go │ │ ├── cmd │ │ └── bolt │ │ │ ├── main.go │ │ │ └── main_test.go │ │ ├── cursor.go │ │ ├── cursor_test.go │ │ ├── db.go │ │ ├── db_test.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── freelist.go │ │ ├── freelist_test.go │ │ ├── node.go │ │ ├── node_test.go │ │ ├── page.go │ │ ├── page_test.go │ │ ├── quick_test.go │ │ ├── simulation_test.go │ │ ├── tx.go │ │ └── tx_test.go ├── btcsuite │ ├── btcd │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGES │ │ ├── LICENSE │ │ ├── README.md │ │ ├── addrmgr │ │ │ ├── addrmanager.go │ │ │ ├── addrmanager_test.go │ │ │ ├── cov_report.sh │ │ │ ├── doc.go │ │ │ ├── internal_test.go │ │ │ ├── knownaddress.go │ │ │ ├── knownaddress_test.go │ │ │ ├── log.go │ │ │ ├── network.go │ │ │ ├── network_test.go │ │ │ └── test_coverage.txt │ │ ├── blockchain │ │ │ ├── README.md │ │ │ ├── accept.go │ │ │ ├── bench_test.go │ │ │ ├── blocklocator.go │ │ │ ├── chain.go │ │ │ ├── chain_test.go │ │ │ ├── chainio.go │ │ │ ├── chainio_test.go │ │ │ ├── checkpoints.go │ │ │ ├── common_test.go │ │ │ ├── compress.go │ │ │ ├── compress_test.go │ │ │ ├── difficulty.go │ │ │ ├── difficulty_test.go │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── error_test.go │ │ │ ├── example_test.go │ │ │ ├── fullblocks_test.go │ │ │ ├── fullblocktests │ │ │ │ ├── README.md │ │ │ │ ├── generate.go │ │ │ │ └── params.go │ │ │ ├── indexers │ │ │ │ ├── README.md │ │ │ │ ├── addrindex.go │ │ │ │ ├── addrindex_test.go │ │ │ │ ├── blocklogger.go │ │ │ │ ├── common.go │ │ │ │ ├── log.go │ │ │ │ ├── manager.go │ │ │ │ └── txindex.go │ │ │ ├── internal_test.go │ │ │ ├── log.go │ │ │ ├── mediantime.go │ │ │ ├── mediantime_test.go │ │ │ ├── merkle.go │ │ │ ├── merkle_test.go │ │ │ ├── notifications.go │ │ │ ├── process.go │ │ │ ├── reorganization_test.go │ │ │ ├── scriptval.go │ │ │ ├── scriptval_test.go │ │ │ ├── testdata │ │ │ │ ├── 277647.dat.bz2 │ │ │ │ ├── 277647.utxostore.bz2 │ │ │ │ ├── blk_0_to_4.dat.bz2 │ │ │ │ ├── blk_3A.dat.bz2 │ │ │ │ ├── blk_4A.dat.bz2 │ │ │ │ ├── blk_5A.dat.bz2 │ │ │ │ └── reorgtest.hex │ │ │ ├── timesorter.go │ │ │ ├── timesorter_test.go │ │ │ ├── utxoviewpoint.go │ │ │ ├── validate.go │ │ │ └── validate_test.go │ │ ├── blocklogger.go │ │ ├── blockmanager.go │ │ ├── btcd.go │ │ ├── btcec │ │ │ ├── README.md │ │ │ ├── bench_test.go │ │ │ ├── btcec.go │ │ │ ├── btcec_test.go │ │ │ ├── ciphering.go │ │ │ ├── ciphering_test.go │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ ├── field.go │ │ │ ├── field_test.go │ │ │ ├── genprecomps.go │ │ │ ├── gensecp256k1.go │ │ │ ├── precompute.go │ │ │ ├── privkey.go │ │ │ ├── privkey_test.go │ │ │ ├── pubkey.go │ │ │ ├── pubkey_test.go │ │ │ ├── secp256k1.go │ │ │ ├── signature.go │ │ │ └── signature_test.go │ │ ├── btcjson │ │ │ ├── CONTRIBUTORS │ │ │ ├── README.md │ │ │ ├── btcdextcmds.go │ │ │ ├── btcdextcmds_test.go │ │ │ ├── btcwalletextcmds.go │ │ │ ├── btcwalletextcmds_test.go │ │ │ ├── chainsvrcmds.go │ │ │ ├── chainsvrcmds_test.go │ │ │ ├── chainsvrresults.go │ │ │ ├── chainsvrresults_test.go │ │ │ ├── chainsvrwscmds.go │ │ │ ├── chainsvrwscmds_test.go │ │ │ ├── chainsvrwsntfns.go │ │ │ ├── chainsvrwsntfns_test.go │ │ │ ├── chainsvrwsresults.go │ │ │ ├── cmdinfo.go │ │ │ ├── cmdinfo_test.go │ │ │ ├── cmdparse.go │ │ │ ├── cmdparse_test.go │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── error_test.go │ │ │ ├── example_test.go │ │ │ ├── export_test.go │ │ │ ├── help.go │ │ │ ├── help_test.go │ │ │ ├── helpers.go │ │ │ ├── helpers_test.go │ │ │ ├── jsonrpc.go │ │ │ ├── jsonrpc_test.go │ │ │ ├── jsonrpcerr.go │ │ │ ├── register.go │ │ │ ├── register_test.go │ │ │ ├── walletsvrcmds.go │ │ │ ├── walletsvrcmds_test.go │ │ │ ├── walletsvrresults.go │ │ │ ├── walletsvrwscmds.go │ │ │ ├── walletsvrwscmds_test.go │ │ │ ├── walletsvrwsntfns.go │ │ │ └── walletsvrwsntfns_test.go │ │ ├── chaincfg │ │ │ ├── README.md │ │ │ ├── chainhash │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── hash.go │ │ │ │ ├── hash_test.go │ │ │ │ ├── hashfuncs.go │ │ │ │ └── hashfuncs_test.go │ │ │ ├── doc.go │ │ │ ├── genesis.go │ │ │ ├── genesis_test.go │ │ │ ├── params.go │ │ │ ├── params_test.go │ │ │ └── register_test.go │ │ ├── cmd │ │ │ ├── addblock │ │ │ │ ├── addblock.go │ │ │ │ ├── config.go │ │ │ │ └── import.go │ │ │ ├── btcctl │ │ │ │ ├── btcctl.go │ │ │ │ ├── config.go │ │ │ │ ├── httpclient.go │ │ │ │ └── version.go │ │ │ ├── findcheckpoint │ │ │ │ ├── config.go │ │ │ │ └── findcheckpoint.go │ │ │ └── gencerts │ │ │ │ └── gencerts.go │ │ ├── config.go │ │ ├── config_test.go │ │ ├── cpuminer.go │ │ ├── database │ │ │ ├── README.md │ │ │ ├── cmd │ │ │ │ └── dbtool │ │ │ │ │ ├── fetchblock.go │ │ │ │ │ ├── fetchblockregion.go │ │ │ │ │ ├── globalconfig.go │ │ │ │ │ ├── insecureimport.go │ │ │ │ │ ├── loadheaders.go │ │ │ │ │ ├── main.go │ │ │ │ │ └── signal.go │ │ │ ├── doc.go │ │ │ ├── driver.go │ │ │ ├── driver_test.go │ │ │ ├── error.go │ │ │ ├── error_test.go │ │ │ ├── example_test.go │ │ │ ├── export_test.go │ │ │ ├── ffldb │ │ │ │ ├── README.md │ │ │ │ ├── bench_test.go │ │ │ │ ├── blockio.go │ │ │ │ ├── db.go │ │ │ │ ├── dbcache.go │ │ │ │ ├── doc.go │ │ │ │ ├── driver.go │ │ │ │ ├── driver_test.go │ │ │ │ ├── export_test.go │ │ │ │ ├── interface_test.go │ │ │ │ ├── ldbtreapiter.go │ │ │ │ ├── mockfile_test.go │ │ │ │ ├── reconcile.go │ │ │ │ └── whitebox_test.go │ │ │ ├── interface.go │ │ │ ├── internal │ │ │ │ └── treap │ │ │ │ │ ├── README.md │ │ │ │ │ ├── common.go │ │ │ │ │ ├── common_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── immutable.go │ │ │ │ │ ├── immutable_test.go │ │ │ │ │ ├── mutable.go │ │ │ │ │ ├── mutable_test.go │ │ │ │ │ ├── treapiter.go │ │ │ │ │ └── treapiter_test.go │ │ │ ├── log.go │ │ │ ├── log_test.go │ │ │ └── testdata │ │ │ │ └── blocks1-256.bz2 │ │ ├── deps.txt │ │ ├── discovery.go │ │ ├── doc.go │ │ ├── docs │ │ │ ├── README.md │ │ │ ├── code_contribution_guidelines.md │ │ │ ├── configure_peer_server_listen_interfaces.md │ │ │ ├── configure_rpc_server_listen_interfaces.md │ │ │ ├── configuring_tor.md │ │ │ ├── default_ports.md │ │ │ ├── json_rpc_api.md │ │ │ └── using_bootstrap_dat.md │ │ ├── dynamicbanscore.go │ │ ├── dynamicbanscore_test.go │ │ ├── glide.lock │ │ ├── glide.yaml │ │ ├── goclean.sh │ │ ├── limits │ │ │ ├── limits_plan9.go │ │ │ ├── limits_unix.go │ │ │ └── limits_windows.go │ │ ├── log.go │ │ ├── mempool │ │ │ ├── README.md │ │ │ ├── error.go │ │ │ ├── log.go │ │ │ ├── mempool.go │ │ │ ├── mempool_test.go │ │ │ ├── policy.go │ │ │ └── policy_test.go │ │ ├── mining.go │ │ ├── mining │ │ │ ├── README.md │ │ │ ├── mining.go │ │ │ └── policy.go │ │ ├── mining_test.go │ │ ├── params.go │ │ ├── peer │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ ├── export_test.go │ │ │ ├── log.go │ │ │ ├── log_test.go │ │ │ ├── mruinvmap.go │ │ │ ├── mruinvmap_test.go │ │ │ ├── mrunoncemap.go │ │ │ ├── mrunoncemap_test.go │ │ │ ├── peer.go │ │ │ └── peer_test.go │ │ ├── release │ │ │ ├── notes.sample │ │ │ └── prep_release.sh │ │ ├── rpcserver.go │ │ ├── rpcserver_test.go │ │ ├── rpcserverhelp.go │ │ ├── rpcserverhelp_test.go │ │ ├── rpctest │ │ │ ├── README.md │ │ │ ├── blockgen.go │ │ │ ├── doc.go │ │ │ ├── memwallet.go │ │ │ ├── node.go │ │ │ ├── rpc_harness.go │ │ │ ├── rpc_harness_test.go │ │ │ └── utils.go │ │ ├── rpcwebsocket.go │ │ ├── sample-btcd.conf │ │ ├── server.go │ │ ├── service_windows.go │ │ ├── signal.go │ │ ├── signalsigterm.go │ │ ├── txscript │ │ │ ├── README.md │ │ │ ├── consensus.go │ │ │ ├── data │ │ │ │ ├── LICENSE │ │ │ │ ├── script_invalid.json │ │ │ │ ├── script_valid.json │ │ │ │ ├── sighash.json │ │ │ │ ├── tx_invalid.json │ │ │ │ └── tx_valid.json │ │ │ ├── doc.go │ │ │ ├── engine.go │ │ │ ├── engine_test.go │ │ │ ├── error.go │ │ │ ├── example_test.go │ │ │ ├── log.go │ │ │ ├── log_test.go │ │ │ ├── opcode.go │ │ │ ├── opcode_test.go │ │ │ ├── reference_test.go │ │ │ ├── script.go │ │ │ ├── script_test.go │ │ │ ├── scriptbuilder.go │ │ │ ├── scriptbuilder_test.go │ │ │ ├── scriptnum.go │ │ │ ├── scriptnum_test.go │ │ │ ├── sigcache.go │ │ │ ├── sigcache_test.go │ │ │ ├── sign.go │ │ │ ├── sign_test.go │ │ │ ├── stack.go │ │ │ ├── stack_test.go │ │ │ ├── standard.go │ │ │ └── standard_test.go │ │ ├── upgrade.go │ │ ├── upnp.go │ │ ├── version.go │ │ └── wire │ │ │ ├── README.md │ │ │ ├── bench_test.go │ │ │ ├── blockheader.go │ │ │ ├── blockheader_test.go │ │ │ ├── common.go │ │ │ ├── common_test.go │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── fakeconn_test.go │ │ │ ├── fakemessage_test.go │ │ │ ├── fixedIO_test.go │ │ │ ├── invvect.go │ │ │ ├── invvect_test.go │ │ │ ├── message.go │ │ │ ├── message_test.go │ │ │ ├── msgaddr.go │ │ │ ├── msgaddr_test.go │ │ │ ├── msgalert.go │ │ │ ├── msgalert_test.go │ │ │ ├── msgblock.go │ │ │ ├── msgblock_test.go │ │ │ ├── msgfeefilter.go │ │ │ ├── msgfeefilter_test.go │ │ │ ├── msgfilteradd.go │ │ │ ├── msgfilteradd_test.go │ │ │ ├── msgfilterclear.go │ │ │ ├── msgfilterclear_test.go │ │ │ ├── msgfilterload.go │ │ │ ├── msgfilterload_test.go │ │ │ ├── msggetaddr.go │ │ │ ├── msggetaddr_test.go │ │ │ ├── msggetblocks.go │ │ │ ├── msggetblocks_test.go │ │ │ ├── msggetdata.go │ │ │ ├── msggetdata_test.go │ │ │ ├── msggetheaders.go │ │ │ ├── msggetheaders_test.go │ │ │ ├── msgheaders.go │ │ │ ├── msgheaders_test.go │ │ │ ├── msginv.go │ │ │ ├── msginv_test.go │ │ │ ├── msgmempool.go │ │ │ ├── msgmempool_test.go │ │ │ ├── msgmerkleblock.go │ │ │ ├── msgmerkleblock_test.go │ │ │ ├── msgnotfound.go │ │ │ ├── msgnotfound_test.go │ │ │ ├── msgping.go │ │ │ ├── msgping_test.go │ │ │ ├── msgpong.go │ │ │ ├── msgpong_test.go │ │ │ ├── msgreject.go │ │ │ ├── msgreject_test.go │ │ │ ├── msgsendheaders.go │ │ │ ├── msgsendheaders_test.go │ │ │ ├── msgtx.go │ │ │ ├── msgtx_test.go │ │ │ ├── msgverack.go │ │ │ ├── msgverack_test.go │ │ │ ├── msgversion.go │ │ │ ├── msgversion_test.go │ │ │ ├── netaddress.go │ │ │ ├── netaddress_test.go │ │ │ ├── protocol.go │ │ │ ├── protocol_test.go │ │ │ └── testdata │ │ │ └── megatx.bin.bz2 │ ├── btclog │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── goclean.sh │ │ ├── interface.go │ │ ├── subsystem.go │ │ └── util.go │ ├── btcutil │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── address.go │ │ ├── address_test.go │ │ ├── amount.go │ │ ├── amount_test.go │ │ ├── appdata.go │ │ ├── appdata_test.go │ │ ├── base58 │ │ │ ├── README.md │ │ │ ├── alphabet.go │ │ │ ├── base58.go │ │ │ ├── base58_test.go │ │ │ ├── base58bench_test.go │ │ │ ├── base58check.go │ │ │ ├── base58check_test.go │ │ │ ├── cov_report.sh │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ └── genalphabet.go │ │ ├── block.go │ │ ├── block_test.go │ │ ├── bloom │ │ │ ├── README.md │ │ │ ├── cov_report.sh │ │ │ ├── example_test.go │ │ │ ├── filter.go │ │ │ ├── filter_test.go │ │ │ ├── merkleblock.go │ │ │ ├── merkleblock_test.go │ │ │ ├── murmurhash3.go │ │ │ ├── murmurhash3_test.go │ │ │ └── test_coverage.txt │ │ ├── certgen.go │ │ ├── certgen_test.go │ │ ├── coinset │ │ │ ├── README.md │ │ │ ├── coins.go │ │ │ ├── coins_test.go │ │ │ ├── cov_report.sh │ │ │ └── test_coverage.txt │ │ ├── const.go │ │ ├── cov_report.sh │ │ ├── doc.go │ │ ├── example_test.go │ │ ├── goclean.sh │ │ ├── hash160.go │ │ ├── hdkeychain │ │ │ ├── README.md │ │ │ ├── bench_test.go │ │ │ ├── cov_report.sh │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ ├── extendedkey.go │ │ │ ├── extendedkey_test.go │ │ │ └── test_coverage.txt │ │ ├── internal_test.go │ │ ├── net.go │ │ ├── net_noop.go │ │ ├── test_coverage.txt │ │ ├── tx.go │ │ ├── tx_test.go │ │ ├── txsort │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── testdata │ │ │ │ ├── bip69-1.hex │ │ │ │ ├── bip69-2.hex │ │ │ │ ├── bip69-3.hex │ │ │ │ ├── bip69-4.hex │ │ │ │ └── bip69-5.hex │ │ │ ├── txsort.go │ │ │ └── txsort_test.go │ │ ├── wif.go │ │ └── wif_test.go │ ├── fastsha256 │ │ ├── LICENSE.md │ │ ├── fastsha256_test.go │ │ ├── sha256.go │ │ ├── sha256_test.go │ │ ├── sha256block.go │ │ ├── sha256block_386.s │ │ ├── sha256block_amd64.s │ │ └── sha256block_decl.go │ ├── golangcrypto │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README │ │ ├── bcrypt │ │ │ ├── base64.go │ │ │ ├── bcrypt.go │ │ │ └── bcrypt_test.go │ │ ├── blowfish │ │ │ ├── block.go │ │ │ ├── blowfish_test.go │ │ │ ├── cipher.go │ │ │ └── const.go │ │ ├── bn256 │ │ │ ├── bn256.go │ │ │ ├── bn256_test.go │ │ │ ├── constants.go │ │ │ ├── curve.go │ │ │ ├── example_test.go │ │ │ ├── gfp12.go │ │ │ ├── gfp2.go │ │ │ ├── gfp6.go │ │ │ ├── optate.go │ │ │ └── twist.go │ │ ├── cast5 │ │ │ ├── cast5.go │ │ │ └── cast5_test.go │ │ ├── curve25519 │ │ │ ├── const_amd64.s │ │ │ ├── cswap_amd64.s │ │ │ ├── curve25519.go │ │ │ ├── curve25519_test.go │ │ │ ├── doc.go │ │ │ ├── freeze_amd64.s │ │ │ ├── ladderstep_amd64.s │ │ │ ├── mont25519_amd64.go │ │ │ ├── mul_amd64.s │ │ │ └── square_amd64.s │ │ ├── hkdf │ │ │ ├── example_test.go │ │ │ ├── hkdf.go │ │ │ └── hkdf_test.go │ │ ├── md4 │ │ │ ├── md4.go │ │ │ ├── md4_test.go │ │ │ └── md4block.go │ │ ├── nacl │ │ │ ├── box │ │ │ │ ├── box.go │ │ │ │ └── box_test.go │ │ │ └── secretbox │ │ │ │ ├── secretbox.go │ │ │ │ └── secretbox_test.go │ │ ├── ocsp │ │ │ ├── ocsp.go │ │ │ └── ocsp_test.go │ │ ├── openpgp │ │ │ ├── armor │ │ │ │ ├── armor.go │ │ │ │ ├── armor_test.go │ │ │ │ └── encode.go │ │ │ ├── canonical_text.go │ │ │ ├── canonical_text_test.go │ │ │ ├── clearsign │ │ │ │ ├── clearsign.go │ │ │ │ └── clearsign_test.go │ │ │ ├── elgamal │ │ │ │ ├── elgamal.go │ │ │ │ └── elgamal_test.go │ │ │ ├── errors │ │ │ │ └── errors.go │ │ │ ├── keys.go │ │ │ ├── keys_test.go │ │ │ ├── packet │ │ │ │ ├── compressed.go │ │ │ │ ├── compressed_test.go │ │ │ │ ├── config.go │ │ │ │ ├── encrypted_key.go │ │ │ │ ├── encrypted_key_test.go │ │ │ │ ├── literal.go │ │ │ │ ├── ocfb.go │ │ │ │ ├── ocfb_test.go │ │ │ │ ├── one_pass_signature.go │ │ │ │ ├── opaque.go │ │ │ │ ├── opaque_test.go │ │ │ │ ├── packet.go │ │ │ │ ├── packet_test.go │ │ │ │ ├── private_key.go │ │ │ │ ├── private_key_test.go │ │ │ │ ├── public_key.go │ │ │ │ ├── public_key_test.go │ │ │ │ ├── public_key_v3.go │ │ │ │ ├── public_key_v3_test.go │ │ │ │ ├── reader.go │ │ │ │ ├── signature.go │ │ │ │ ├── signature_test.go │ │ │ │ ├── signature_v3.go │ │ │ │ ├── signature_v3_test.go │ │ │ │ ├── symmetric_key_encrypted.go │ │ │ │ ├── symmetric_key_encrypted_test.go │ │ │ │ ├── symmetrically_encrypted.go │ │ │ │ ├── symmetrically_encrypted_test.go │ │ │ │ ├── userattribute.go │ │ │ │ ├── userattribute_test.go │ │ │ │ ├── userid.go │ │ │ │ └── userid_test.go │ │ │ ├── read.go │ │ │ ├── read_test.go │ │ │ ├── s2k │ │ │ │ ├── s2k.go │ │ │ │ └── s2k_test.go │ │ │ ├── write.go │ │ │ └── write_test.go │ │ ├── otr │ │ │ ├── libotr_test_helper.c │ │ │ ├── otr.go │ │ │ ├── otr_test.go │ │ │ └── smp.go │ │ ├── pbkdf2 │ │ │ ├── pbkdf2.go │ │ │ └── pbkdf2_test.go │ │ ├── poly1305 │ │ │ ├── const_amd64.s │ │ │ ├── poly1305.go │ │ │ ├── poly1305_amd64.s │ │ │ ├── poly1305_test.go │ │ │ ├── sum_amd64.go │ │ │ └── sum_ref.go │ │ ├── ripemd160 │ │ │ ├── ripemd160.go │ │ │ ├── ripemd160_test.go │ │ │ └── ripemd160block.go │ │ ├── salsa20 │ │ │ ├── salsa │ │ │ │ ├── hsalsa20.go │ │ │ │ ├── salsa2020_amd64.s │ │ │ │ ├── salsa208.go │ │ │ │ ├── salsa20_amd64.go │ │ │ │ ├── salsa20_ref.go │ │ │ │ └── salsa_test.go │ │ │ ├── salsa20.go │ │ │ └── salsa20_test.go │ │ ├── scrypt │ │ │ ├── scrypt.go │ │ │ └── scrypt_test.go │ │ ├── sha3 │ │ │ ├── doc.go │ │ │ ├── hashes.go │ │ │ ├── keccakf.go │ │ │ ├── register.go │ │ │ ├── sha3.go │ │ │ ├── sha3_test.go │ │ │ ├── shake.go │ │ │ ├── testdata │ │ │ │ └── keccakKats.json.deflate │ │ │ ├── xor.go │ │ │ ├── xor_generic.go │ │ │ └── xor_unaligned.go │ │ ├── ssh │ │ │ ├── agent │ │ │ │ ├── client.go │ │ │ │ ├── client_test.go │ │ │ │ ├── forward.go │ │ │ │ ├── keyring.go │ │ │ │ ├── server.go │ │ │ │ ├── server_test.go │ │ │ │ └── testdata_test.go │ │ │ ├── benchmark_test.go │ │ │ ├── buffer.go │ │ │ ├── buffer_test.go │ │ │ ├── certs.go │ │ │ ├── certs_test.go │ │ │ ├── channel.go │ │ │ ├── cipher.go │ │ │ ├── cipher_test.go │ │ │ ├── client.go │ │ │ ├── client_auth.go │ │ │ ├── client_auth_test.go │ │ │ ├── client_test.go │ │ │ ├── common.go │ │ │ ├── connection.go │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ ├── handshake.go │ │ │ ├── handshake_test.go │ │ │ ├── kex.go │ │ │ ├── kex_test.go │ │ │ ├── keys.go │ │ │ ├── keys_test.go │ │ │ ├── mac.go │ │ │ ├── mempipe_test.go │ │ │ ├── messages.go │ │ │ ├── messages_test.go │ │ │ ├── mux.go │ │ │ ├── mux_test.go │ │ │ ├── server.go │ │ │ ├── session.go │ │ │ ├── session_test.go │ │ │ ├── tcpip.go │ │ │ ├── tcpip_test.go │ │ │ ├── terminal │ │ │ │ ├── terminal.go │ │ │ │ ├── terminal_test.go │ │ │ │ ├── util.go │ │ │ │ ├── util_bsd.go │ │ │ │ ├── util_linux.go │ │ │ │ └── util_windows.go │ │ │ ├── test │ │ │ │ ├── agent_unix_test.go │ │ │ │ ├── cert_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── forward_unix_test.go │ │ │ │ ├── session_test.go │ │ │ │ ├── tcpip_test.go │ │ │ │ ├── test_unix_test.go │ │ │ │ └── testdata_test.go │ │ │ ├── testdata │ │ │ │ ├── doc.go │ │ │ │ └── keys.go │ │ │ ├── testdata_test.go │ │ │ ├── transport.go │ │ │ └── transport_test.go │ │ ├── twofish │ │ │ ├── twofish.go │ │ │ └── twofish_test.go │ │ ├── xtea │ │ │ ├── block.go │ │ │ ├── cipher.go │ │ │ └── xtea_test.go │ │ └── xts │ │ │ ├── xts.go │ │ │ └── xts_test.go │ └── seelog │ │ ├── LICENSE.txt │ │ ├── README.markdown │ │ ├── behavior_adaptive_test.go │ │ ├── behavior_adaptivelogger.go │ │ ├── behavior_asynclogger.go │ │ ├── behavior_asyncloop_test.go │ │ ├── behavior_asynclooplogger.go │ │ ├── behavior_asynctimer_test.go │ │ ├── behavior_asynctimerlogger.go │ │ ├── behavior_synclogger.go │ │ ├── behavior_synclogger_test.go │ │ ├── cfg_config.go │ │ ├── cfg_errors.go │ │ ├── cfg_logconfig.go │ │ ├── cfg_logconfig_test.go │ │ ├── cfg_parser.go │ │ ├── cfg_parser_test.go │ │ ├── common_closer.go │ │ ├── common_constraints.go │ │ ├── common_constraints_test.go │ │ ├── common_context.go │ │ ├── common_context_test.go │ │ ├── common_exception.go │ │ ├── common_exception_test.go │ │ ├── common_flusher.go │ │ ├── common_loglevel.go │ │ ├── dispatch_dispatcher.go │ │ ├── dispatch_filterdispatcher.go │ │ ├── dispatch_filterdispatcher_test.go │ │ ├── dispatch_splitdispatcher.go │ │ ├── dispatch_splitdispatcher_test.go │ │ ├── doc.go │ │ ├── format.go │ │ ├── format_test.go │ │ ├── internals_baseerror.go │ │ ├── internals_byteverifiers_test.go │ │ ├── internals_fsutils.go │ │ ├── internals_xmlnode.go │ │ ├── internals_xmlnode_test.go │ │ ├── log.go │ │ ├── logger.go │ │ ├── writers_bufferedwriter.go │ │ ├── writers_bufferedwriter_test.go │ │ ├── writers_connwriter.go │ │ ├── writers_consolewriter.go │ │ ├── writers_filewriter.go │ │ ├── writers_filewriter_test.go │ │ ├── writers_formattedwriter.go │ │ ├── writers_formattedwriter_test.go │ │ ├── writers_rollingfilewriter.go │ │ ├── writers_rollingfilewriter_test.go │ │ └── writers_smtpwriter.go ├── codahale │ └── chacha20 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── chacha20.go │ │ ├── chacha20_test.go │ │ ├── core_ref.go │ │ └── shootout_test.go ├── davecgh │ └── go-spew │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cov_report.sh │ │ ├── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── common_test.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── dump_test.go │ │ ├── dumpcgo_test.go │ │ ├── dumpnocgo_test.go │ │ ├── example_test.go │ │ ├── format.go │ │ ├── format_test.go │ │ ├── internal_test.go │ │ ├── internalunsafe_test.go │ │ ├── spew.go │ │ ├── spew_test.go │ │ └── testdata │ │ │ └── dumpcgo.go │ │ └── test_coverage.txt ├── golang │ └── protobuf │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── Make.protobuf │ │ ├── Makefile │ │ ├── README.md │ │ ├── _conformance │ │ ├── Makefile │ │ ├── conformance.go │ │ └── conformance_proto │ │ │ ├── conformance.pb.go │ │ │ └── conformance.proto │ │ ├── descriptor │ │ ├── descriptor.go │ │ └── descriptor_test.go │ │ ├── jsonpb │ │ ├── jsonpb.go │ │ ├── jsonpb_test.go │ │ └── jsonpb_test_proto │ │ │ ├── Makefile │ │ │ ├── more_test_objects.pb.go │ │ │ ├── more_test_objects.proto │ │ │ ├── test_objects.pb.go │ │ │ └── test_objects.proto │ │ ├── proto │ │ ├── Makefile │ │ ├── all_test.go │ │ ├── any_test.go │ │ ├── clone.go │ │ ├── clone_test.go │ │ ├── decode.go │ │ ├── decode_test.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── equal.go │ │ ├── equal_test.go │ │ ├── extensions.go │ │ ├── extensions_test.go │ │ ├── lib.go │ │ ├── map_test.go │ │ ├── message_set.go │ │ ├── message_set_test.go │ │ ├── pointer_reflect.go │ │ ├── pointer_unsafe.go │ │ ├── properties.go │ │ ├── proto3_proto │ │ │ ├── proto3.pb.go │ │ │ └── proto3.proto │ │ ├── proto3_test.go │ │ ├── size2_test.go │ │ ├── size_test.go │ │ ├── testdata │ │ │ ├── Makefile │ │ │ ├── golden_test.go │ │ │ ├── test.pb.go │ │ │ └── test.proto │ │ ├── text.go │ │ ├── text_parser.go │ │ ├── text_parser_test.go │ │ └── text_test.go │ │ ├── protoc-gen-go │ │ ├── Makefile │ │ ├── descriptor │ │ │ ├── Makefile │ │ │ ├── descriptor.pb.go │ │ │ └── descriptor.proto │ │ ├── doc.go │ │ ├── generator │ │ │ ├── Makefile │ │ │ ├── generator.go │ │ │ └── name_test.go │ │ ├── grpc │ │ │ └── grpc.go │ │ ├── link_grpc.go │ │ ├── main.go │ │ ├── plugin │ │ │ ├── Makefile │ │ │ ├── plugin.pb.go │ │ │ ├── plugin.pb.golden │ │ │ └── plugin.proto │ │ └── testdata │ │ │ ├── Makefile │ │ │ ├── extension_base.proto │ │ │ ├── extension_extra.proto │ │ │ ├── extension_test.go │ │ │ ├── extension_user.proto │ │ │ ├── grpc.proto │ │ │ ├── imp.pb.go.golden │ │ │ ├── imp.proto │ │ │ ├── imp2.proto │ │ │ ├── imp3.proto │ │ │ ├── main_test.go │ │ │ ├── multi │ │ │ ├── multi1.proto │ │ │ ├── multi2.proto │ │ │ └── multi3.proto │ │ │ ├── my_test │ │ │ ├── test.pb.go │ │ │ ├── test.pb.go.golden │ │ │ └── test.proto │ │ │ └── proto3.proto │ │ └── ptypes │ │ ├── any.go │ │ ├── any │ │ ├── any.pb.go │ │ └── any.proto │ │ ├── any_test.go │ │ ├── doc.go │ │ ├── duration.go │ │ ├── duration │ │ ├── duration.pb.go │ │ └── duration.proto │ │ ├── duration_test.go │ │ ├── empty │ │ ├── empty.pb.go │ │ └── empty.proto │ │ ├── regen.sh │ │ ├── struct │ │ ├── struct.pb.go │ │ └── struct.proto │ │ ├── timestamp.go │ │ ├── timestamp │ │ ├── timestamp.pb.go │ │ └── timestamp.proto │ │ ├── timestamp_test.go │ │ └── wrappers │ │ ├── wrappers.pb.go │ │ └── wrappers.proto ├── julienschmidt │ └── httprouter │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── path.go │ │ ├── path_test.go │ │ ├── router.go │ │ ├── router_test.go │ │ ├── tree.go │ │ └── tree_test.go ├── op │ └── go-logging │ │ ├── .travis.yml │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backend.go │ │ ├── example_test.go │ │ ├── examples │ │ ├── example.go │ │ └── example.png │ │ ├── format.go │ │ ├── format_test.go │ │ ├── level.go │ │ ├── level_test.go │ │ ├── log_nix.go │ │ ├── log_test.go │ │ ├── log_windows.go │ │ ├── logger.go │ │ ├── logger_test.go │ │ ├── memory.go │ │ ├── memory_test.go │ │ ├── multi.go │ │ ├── multi_test.go │ │ ├── syslog.go │ │ └── syslog_fallback.go ├── pmezard │ └── go-difflib │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── difflib │ │ ├── difflib.go │ │ └── difflib_test.go ├── shopspring │ └── decimal │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decimal.go │ │ └── decimal_test.go ├── skycoin │ └── skycoin │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── Installation.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── cmd │ │ ├── address_gen │ │ │ └── address_gen.go │ │ ├── cli │ │ │ ├── README.md │ │ │ ├── autocomplete │ │ │ │ ├── bash_autocomplete │ │ │ │ └── zsh_autocomplete │ │ │ ├── cli.go │ │ │ └── install.sh │ │ └── skycoin │ │ │ └── skycoin.go │ │ ├── electron │ │ ├── README.md │ │ ├── assets │ │ │ ├── linux │ │ │ │ └── README │ │ │ ├── osx │ │ │ │ ├── Info.plist │ │ │ │ └── appIcon.icns │ │ │ └── windows │ │ │ │ └── favicon.ico │ │ ├── build-conf.sh │ │ ├── build-electron-release.sh │ │ ├── build-standalone-release.sh │ │ ├── build.sh │ │ ├── build │ │ │ ├── icon.icns │ │ │ └── icon.ico │ │ ├── clean-static-libs.sh │ │ ├── clean.sh │ │ ├── compress-electron-release.sh │ │ ├── compress-standalone-release.sh │ │ ├── electron-downloader.sh │ │ ├── gox.sh │ │ ├── install-node-modules.sh │ │ ├── package-electron-release.sh │ │ ├── package-source.sh │ │ ├── package-standalone-release.sh │ │ ├── package.json │ │ ├── skycoin │ │ │ └── current-skycoin.json │ │ ├── src │ │ │ ├── electron-main.js │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── test-coverage.sh │ │ ├── version-control.sh │ │ └── yarn.lock │ │ ├── run.sh │ │ └── src │ │ ├── api │ │ ├── cli │ │ │ ├── add_private_key.go │ │ │ ├── address_gen.go │ │ │ ├── blocks.go │ │ │ ├── broadcast_rawtx.go │ │ │ ├── check_balance.go │ │ │ ├── checkdb.go │ │ │ ├── cli.go │ │ │ ├── cli_test.go │ │ │ ├── create_rawtx.go │ │ │ ├── create_rawtx_test.go │ │ │ ├── generate_addrs.go │ │ │ ├── generate_wallet.go │ │ │ ├── last_blocks.go │ │ │ ├── list_addrs.go │ │ │ ├── list_wallets.go │ │ │ ├── outputs.go │ │ │ ├── send.go │ │ │ ├── status.go │ │ │ ├── transaction.go │ │ │ ├── version.go │ │ │ ├── wallet_dir.go │ │ │ └── wallet_history.go │ │ └── webrpc │ │ │ ├── README.md │ │ │ ├── block.go │ │ │ ├── block_test.go │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ ├── gateway.go │ │ │ ├── gatewayer_mock_test.go │ │ │ ├── outputs.go │ │ │ ├── outputs_test.go │ │ │ ├── status.go │ │ │ ├── status_test.go │ │ │ ├── transaction.go │ │ │ ├── transaction_test.go │ │ │ ├── uxout.go │ │ │ ├── uxout_test.go │ │ │ ├── webrpc.go │ │ │ └── webrpc_test.go │ │ ├── cipher │ │ ├── address.go │ │ ├── address_test.go │ │ ├── base58 │ │ │ ├── LICENSE │ │ │ └── base58.go │ │ ├── chacha20.go │ │ ├── chacha20 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── chacha20.go │ │ │ ├── chacha20_test.go │ │ │ ├── core_ref.go │ │ │ ├── go-chacha20 │ │ │ │ ├── LICENSE │ │ │ │ ├── Readme.md │ │ │ │ ├── chacha │ │ │ │ │ ├── chacha20_krovetz.c │ │ │ │ │ ├── chacha20_krovetz.go │ │ │ │ │ ├── chacha20_krovetz.h │ │ │ │ │ ├── chacha20_ref.go │ │ │ │ │ └── const.go │ │ │ │ ├── chacha20.go │ │ │ │ └── chacha20_test.go │ │ │ └── shootout_test.go │ │ ├── crypto.go │ │ ├── crypto_test.go │ │ ├── encoder │ │ │ ├── README.md │ │ │ ├── encoder.go │ │ │ ├── encoder_test.go │ │ │ └── field.go │ │ ├── go-bip39 │ │ │ ├── LICENSE │ │ │ ├── bip39.go │ │ │ └── wordlist.go │ │ ├── hash.go │ │ ├── hash_test.go │ │ ├── ripemd160 │ │ │ ├── ripemd160block.go │ │ │ └── ripmd_160.go │ │ └── secp256k1-go │ │ │ ├── README.md │ │ │ ├── secp256_rand.go │ │ │ ├── secp256_test.go │ │ │ ├── secp256k1-go2 │ │ │ ├── COPYING │ │ │ ├── README.md │ │ │ ├── ec.go │ │ │ ├── ec_test.go │ │ │ ├── field.go │ │ │ ├── field_test.go │ │ │ ├── num.go │ │ │ ├── secp256k1.go │ │ │ ├── sig.go │ │ │ ├── sig_test.go │ │ │ ├── xy.go │ │ │ ├── xyz.go │ │ │ ├── xyz_test.go │ │ │ ├── z_consts.go │ │ │ └── z_init.go │ │ │ └── secp256k1.go │ │ ├── coin │ │ ├── block.go │ │ ├── block_test.go │ │ ├── coin_test.go │ │ ├── outputs.go │ │ ├── outputs_test.go │ │ ├── transactions.go │ │ └── transactions_test.go │ │ ├── consensus │ │ ├── blockstat.go │ │ ├── connection_manager.go │ │ ├── consensus.go │ │ ├── consensus_test.go │ │ ├── example │ │ │ ├── README.md │ │ │ ├── example.go │ │ │ ├── example_gnet.go │ │ │ └── example_minimal.go │ │ ├── participant.go │ │ └── public_broadcast_channel │ │ │ └── public_broadcast_channel.go │ │ ├── daemon │ │ ├── daemon.go │ │ ├── daemon_test.go │ │ ├── gateway.go │ │ ├── gateway_test.go │ │ ├── gnet │ │ │ ├── README.md │ │ │ ├── dispatcher.go │ │ │ ├── dispatcher_test.go │ │ │ ├── message.go │ │ │ ├── message_test.go │ │ │ ├── pool.go │ │ │ └── pool_test.go │ │ ├── messages.go │ │ ├── messages_test.go │ │ ├── peers.go │ │ ├── peers_test.go │ │ ├── pex │ │ │ ├── README.md │ │ │ ├── pex.go │ │ │ └── pex_test.go │ │ ├── pool.go │ │ ├── pool_test.go │ │ ├── rpc.go │ │ ├── storage.go │ │ ├── storage_test.go │ │ ├── visor.go │ │ └── visor_test.go │ │ ├── gui │ │ ├── README.md │ │ ├── blockchain.go │ │ ├── explorer.go │ │ ├── http.go │ │ ├── network.go │ │ ├── notes.go │ │ ├── static │ │ │ ├── .angular-cli.json │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ ├── 3rdpartylicenses.txt │ │ │ │ ├── MaterialIcons-Regular.012cf6a10129e2275d79.woff │ │ │ │ ├── MaterialIcons-Regular.570eb83859dc23dd0eec.woff2 │ │ │ │ ├── MaterialIcons-Regular.a37b0c01c0baf1888ca8.ttf │ │ │ │ ├── MaterialIcons-Regular.e79bfd88537def476913.eot │ │ │ │ ├── assets │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── material-icons │ │ │ │ │ │ │ ├── MaterialIcons-Regular.eot │ │ │ │ │ │ │ ├── MaterialIcons-Regular.ijmap │ │ │ │ │ │ │ ├── MaterialIcons-Regular.svg │ │ │ │ │ │ │ ├── MaterialIcons-Regular.ttf │ │ │ │ │ │ │ ├── MaterialIcons-Regular.woff │ │ │ │ │ │ │ ├── MaterialIcons-Regular.woff2 │ │ │ │ │ │ │ └── material-icons.css │ │ │ │ │ │ ├── poppins-bold.woff2 │ │ │ │ │ │ ├── poppins-light.woff2 │ │ │ │ │ │ └── poppins-regular.woff2 │ │ │ │ │ ├── header.png │ │ │ │ │ ├── logo-white.png │ │ │ │ │ └── scripts │ │ │ │ │ │ └── qrcode.min.js │ │ │ │ ├── current-skycoin.json │ │ │ │ ├── favicon.ico │ │ │ │ ├── fontawesome-webfont.674f50d287a8c48dc19b.eot │ │ │ │ ├── fontawesome-webfont.912ec66d7572ff821749.svg │ │ │ │ ├── fontawesome-webfont.af7ae505a9eed503f8b8.woff2 │ │ │ │ ├── fontawesome-webfont.b06871f281fee6b241d6.ttf │ │ │ │ ├── fontawesome-webfont.fee66e712a8a08eef580.woff │ │ │ │ ├── header.e11f7c6852766b9319d6.png │ │ │ │ ├── index.html │ │ │ │ ├── inline.8db5754b7fd6886718a3.bundle.js │ │ │ │ ├── main.e261ccb726775fe1d564.bundle.js │ │ │ │ ├── polyfills.550f19d7d5888922986b.bundle.js │ │ │ │ ├── scripts.0230cbcd8dd5a080d94a.bundle.js │ │ │ │ ├── styles.6804f180140c0fd1a5e3.bundle.css │ │ │ │ └── vendor.c5e377abbe0942082999.bundle.js │ │ │ ├── e2e │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ ├── app.po.ts │ │ │ │ └── tsconfig.e2e.json │ │ │ ├── karma.conf.js │ │ │ ├── package.json │ │ │ ├── protractor.conf.js │ │ │ ├── proxy.config.json │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ ├── app.component.html │ │ │ │ │ ├── app.component.scss │ │ │ │ │ ├── app.component.spec.ts │ │ │ │ │ ├── app.component.ts │ │ │ │ │ ├── app.config.ts │ │ │ │ │ ├── app.module.ts │ │ │ │ │ ├── app.theme.scss │ │ │ │ │ ├── components │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ ├── back-button │ │ │ │ │ │ │ │ ├── back-button.component.css │ │ │ │ │ │ │ │ ├── back-button.component.html │ │ │ │ │ │ │ │ ├── back-button.component.spec.ts │ │ │ │ │ │ │ │ └── back-button.component.ts │ │ │ │ │ │ │ ├── breadcrumb │ │ │ │ │ │ │ │ ├── breadcrumb.component.css │ │ │ │ │ │ │ │ ├── breadcrumb.component.html │ │ │ │ │ │ │ │ ├── breadcrumb.component.spec.ts │ │ │ │ │ │ │ │ └── breadcrumb.component.ts │ │ │ │ │ │ │ ├── button │ │ │ │ │ │ │ │ ├── button.component.css │ │ │ │ │ │ │ │ ├── button.component.html │ │ │ │ │ │ │ │ ├── button.component.spec.ts │ │ │ │ │ │ │ │ └── button.component.ts │ │ │ │ │ │ │ └── qr-code │ │ │ │ │ │ │ │ ├── qr-code.component.css │ │ │ │ │ │ │ │ ├── qr-code.component.html │ │ │ │ │ │ │ │ ├── qr-code.component.spec.ts │ │ │ │ │ │ │ │ └── qr-code.component.ts │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── address │ │ │ │ │ │ │ ├── address.component.css │ │ │ │ │ │ │ ├── address.component.html │ │ │ │ │ │ │ ├── address.component.spec.ts │ │ │ │ │ │ │ └── address.component.ts │ │ │ │ │ │ │ ├── block │ │ │ │ │ │ │ ├── block.component.css │ │ │ │ │ │ │ ├── block.component.html │ │ │ │ │ │ │ ├── block.component.spec.ts │ │ │ │ │ │ │ └── block.component.ts │ │ │ │ │ │ │ ├── buy │ │ │ │ │ │ │ ├── add-deposit-address │ │ │ │ │ │ │ │ ├── add-deposit-address.component.css │ │ │ │ │ │ │ │ ├── add-deposit-address.component.html │ │ │ │ │ │ │ │ ├── add-deposit-address.component.spec.ts │ │ │ │ │ │ │ │ └── add-deposit-address.component.ts │ │ │ │ │ │ │ ├── buy.component.css │ │ │ │ │ │ │ ├── buy.component.html │ │ │ │ │ │ │ ├── buy.component.spec.ts │ │ │ │ │ │ │ └── buy.component.ts │ │ │ │ │ │ │ ├── explorer │ │ │ │ │ │ │ ├── explorer.component.css │ │ │ │ │ │ │ ├── explorer.component.html │ │ │ │ │ │ │ ├── explorer.component.spec.ts │ │ │ │ │ │ │ └── explorer.component.ts │ │ │ │ │ │ │ ├── history │ │ │ │ │ │ │ ├── history.component.css │ │ │ │ │ │ │ ├── history.component.html │ │ │ │ │ │ │ ├── history.component.spec.ts │ │ │ │ │ │ │ └── history.component.ts │ │ │ │ │ │ │ ├── send-skycoin │ │ │ │ │ │ │ ├── send-skycoin.component.css │ │ │ │ │ │ │ ├── send-skycoin.component.html │ │ │ │ │ │ │ ├── send-skycoin.component.spec.ts │ │ │ │ │ │ │ └── send-skycoin.component.ts │ │ │ │ │ │ │ ├── settings │ │ │ │ │ │ │ ├── backup │ │ │ │ │ │ │ │ ├── backup.component.css │ │ │ │ │ │ │ │ ├── backup.component.html │ │ │ │ │ │ │ │ ├── backup.component.spec.ts │ │ │ │ │ │ │ │ └── backup.component.ts │ │ │ │ │ │ │ ├── blockchain │ │ │ │ │ │ │ │ ├── blockchain.component.css │ │ │ │ │ │ │ │ ├── blockchain.component.html │ │ │ │ │ │ │ │ ├── blockchain.component.spec.ts │ │ │ │ │ │ │ │ └── blockchain.component.ts │ │ │ │ │ │ │ ├── network │ │ │ │ │ │ │ │ ├── network.component.css │ │ │ │ │ │ │ │ ├── network.component.html │ │ │ │ │ │ │ │ ├── network.component.spec.ts │ │ │ │ │ │ │ │ └── network.component.ts │ │ │ │ │ │ │ ├── outputs │ │ │ │ │ │ │ │ ├── outputs.component.css │ │ │ │ │ │ │ │ ├── outputs.component.html │ │ │ │ │ │ │ │ ├── outputs.component.spec.ts │ │ │ │ │ │ │ │ └── outputs.component.ts │ │ │ │ │ │ │ └── pending-transactions │ │ │ │ │ │ │ │ ├── pending-transactions.component.css │ │ │ │ │ │ │ │ ├── pending-transactions.component.html │ │ │ │ │ │ │ │ ├── pending-transactions.component.spec.ts │ │ │ │ │ │ │ │ └── pending-transactions.component.ts │ │ │ │ │ │ │ ├── transaction │ │ │ │ │ │ │ ├── transaction.component.css │ │ │ │ │ │ │ ├── transaction.component.html │ │ │ │ │ │ │ ├── transaction.component.spec.ts │ │ │ │ │ │ │ └── transaction.component.ts │ │ │ │ │ │ │ └── wallets │ │ │ │ │ │ │ ├── address-detail │ │ │ │ │ │ │ ├── wallet-detail.component.css │ │ │ │ │ │ │ ├── wallet-detail.component.html │ │ │ │ │ │ │ ├── wallet-detail.component.spec.ts │ │ │ │ │ │ │ └── wallet-detail.component.ts │ │ │ │ │ │ │ ├── change-name │ │ │ │ │ │ │ ├── change-name.component.css │ │ │ │ │ │ │ ├── change-name.component.html │ │ │ │ │ │ │ ├── change-name.component.spec.ts │ │ │ │ │ │ │ └── change-name.component.ts │ │ │ │ │ │ │ ├── create-wallet │ │ │ │ │ │ │ ├── create-wallet.component.css │ │ │ │ │ │ │ ├── create-wallet.component.html │ │ │ │ │ │ │ ├── create-wallet.component.spec.ts │ │ │ │ │ │ │ └── create-wallet.component.ts │ │ │ │ │ │ │ ├── wallets.component.css │ │ │ │ │ │ │ ├── wallets.component.html │ │ │ │ │ │ │ ├── wallets.component.spec.ts │ │ │ │ │ │ │ └── wallets.component.ts │ │ │ │ │ ├── models │ │ │ │ │ │ ├── connection.model.ts │ │ │ │ │ │ └── wallet.model.ts │ │ │ │ │ ├── pipes │ │ │ │ │ │ ├── date-from-now.pipe.spec.ts │ │ │ │ │ │ ├── date-from-now.pipe.ts │ │ │ │ │ │ ├── date-time.pipe.spec.ts │ │ │ │ │ │ ├── date-time.pipe.ts │ │ │ │ │ │ ├── sky.pipe.spec.ts │ │ │ │ │ │ ├── sky.pipe.ts │ │ │ │ │ │ ├── teller-status.pipe.spec.ts │ │ │ │ │ │ ├── teller-status.pipe.ts │ │ │ │ │ │ ├── transactions-amount.pipe.spec.ts │ │ │ │ │ │ └── transactions-amount.pipe.ts │ │ │ │ │ └── services │ │ │ │ │ │ ├── api.service.spec.ts │ │ │ │ │ │ ├── api.service.ts │ │ │ │ │ │ ├── blockchain.service.spec.ts │ │ │ │ │ │ ├── blockchain.service.ts │ │ │ │ │ │ ├── network.service.spec.ts │ │ │ │ │ │ ├── network.service.ts │ │ │ │ │ │ ├── purchase.service.spec.ts │ │ │ │ │ │ ├── purchase.service.ts │ │ │ │ │ │ ├── wallet.service.spec.ts │ │ │ │ │ │ └── wallet.service.ts │ │ │ │ ├── assets │ │ │ │ │ ├── .gitkeep │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── material-icons │ │ │ │ │ │ │ ├── MaterialIcons-Regular.eot │ │ │ │ │ │ │ ├── MaterialIcons-Regular.ijmap │ │ │ │ │ │ │ ├── MaterialIcons-Regular.svg │ │ │ │ │ │ │ ├── MaterialIcons-Regular.ttf │ │ │ │ │ │ │ ├── MaterialIcons-Regular.woff │ │ │ │ │ │ │ ├── MaterialIcons-Regular.woff2 │ │ │ │ │ │ │ └── material-icons.css │ │ │ │ │ │ ├── poppins-bold.woff2 │ │ │ │ │ │ ├── poppins-light.woff2 │ │ │ │ │ │ └── poppins-regular.woff2 │ │ │ │ │ ├── header.png │ │ │ │ │ ├── logo-white.png │ │ │ │ │ └── scripts │ │ │ │ │ │ └── qrcode.min.js │ │ │ │ ├── current-skycoin.json │ │ │ │ ├── environments │ │ │ │ │ ├── environment.prod.ts │ │ │ │ │ └── environment.ts │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.html │ │ │ │ ├── main.ts │ │ │ │ ├── polyfills.ts │ │ │ │ ├── styles.scss │ │ │ │ ├── test.ts │ │ │ │ ├── tsconfig.app.json │ │ │ │ ├── tsconfig.spec.json │ │ │ │ └── typings.d.ts │ │ │ ├── tsconfig.json │ │ │ ├── tslint.json │ │ │ └── yarn.lock │ │ ├── transaction.go │ │ ├── uxout.go │ │ └── wallet.go │ │ ├── testutil │ │ └── blockchain.go │ │ ├── util │ │ ├── browser │ │ │ └── browser.go │ │ ├── cert │ │ │ ├── cert.go │ │ │ └── cert_test.go │ │ ├── droplet │ │ │ ├── droplet.go │ │ │ └── droplet_test.go │ │ ├── file │ │ │ ├── file.go │ │ │ └── file_test.go │ │ ├── http │ │ │ ├── error.go │ │ │ └── json.go │ │ ├── logging │ │ │ └── logging.go │ │ └── utc │ │ │ ├── utc.go │ │ │ └── utc_test.go │ │ ├── visor │ │ ├── blockchain.go │ │ ├── blockchain_parser.go │ │ ├── blockchain_test.go │ │ ├── blockdb │ │ │ ├── README.md │ │ │ ├── block_tree.go │ │ │ ├── block_tree_test.go │ │ │ ├── blockchain.go │ │ │ ├── blockchain_test.go │ │ │ ├── blockdb.go │ │ │ ├── blocksigs.go │ │ │ ├── blocksigs_test.go │ │ │ ├── unspent.go │ │ │ └── unspent_test.go │ │ ├── bucket │ │ │ ├── bucket.go │ │ │ └── bucket_test.go │ │ ├── distribution.go │ │ ├── distribution_test.go │ │ ├── historydb │ │ │ ├── address_txn.go │ │ │ ├── address_txn_test.go │ │ │ ├── address_uxout.go │ │ │ ├── history_meta.go │ │ │ ├── history_meta_test.go │ │ │ ├── historydb.go │ │ │ ├── historydb_test.go │ │ │ ├── output.go │ │ │ ├── transaction.go │ │ │ └── transaction_test.go │ │ ├── readable.go │ │ ├── readable_test.go │ │ ├── rpc.go │ │ ├── rpc_test.go │ │ ├── testdata │ │ │ ├── data.db.garbage │ │ │ └── data.db.nosig │ │ ├── unconfirmed.go │ │ ├── unconfirmed_test.go │ │ ├── visor.go │ │ └── visor_test.go │ │ └── wallet │ │ ├── addresses.go │ │ ├── balance.go │ │ ├── entry.go │ │ ├── notes.go │ │ ├── readable.go │ │ ├── service.go │ │ ├── service_test.go │ │ ├── testdata │ │ ├── invalid_wallets │ │ │ ├── err_type.wlt │ │ │ ├── no_coin.wlt │ │ │ ├── no_seed.wlt │ │ │ └── no_type.wlt │ │ ├── test1.wlt │ │ ├── test2.wlt │ │ ├── test3.1.wlt │ │ └── test3.wlt │ │ ├── wallet.go │ │ ├── wallet_test.go │ │ └── wallets.go ├── stretchr │ ├── objx │ │ ├── .gitignore │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── accessors.go │ │ ├── accessors_test.go │ │ ├── codegen │ │ │ ├── array-access.txt │ │ │ ├── index.html │ │ │ ├── template.txt │ │ │ └── types_list.txt │ │ ├── constants.go │ │ ├── conversions.go │ │ ├── conversions_test.go │ │ ├── doc.go │ │ ├── fixture_test.go │ │ ├── map.go │ │ ├── map_for_test.go │ │ ├── map_test.go │ │ ├── mutations.go │ │ ├── mutations_test.go │ │ ├── security.go │ │ ├── security_test.go │ │ ├── simple_example_test.go │ │ ├── tests.go │ │ ├── tests_test.go │ │ ├── type_specific_codegen.go │ │ ├── type_specific_codegen_test.go │ │ ├── value.go │ │ └── value_test.go │ └── testify │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Godeps │ │ ├── Godeps.json │ │ └── Readme │ │ ├── LICENCE.txt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _codegen │ │ └── main.go │ │ ├── assert │ │ ├── assertion_forward.go │ │ ├── assertion_forward.go.tmpl │ │ ├── assertions.go │ │ ├── assertions_test.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── forward_assertions.go │ │ ├── forward_assertions_test.go │ │ ├── http_assertions.go │ │ └── http_assertions_test.go │ │ ├── doc.go │ │ ├── http │ │ ├── doc.go │ │ ├── test_response_writer.go │ │ └── test_round_tripper.go │ │ ├── mock │ │ ├── doc.go │ │ ├── mock.go │ │ └── mock_test.go │ │ ├── package_test.go │ │ ├── require │ │ ├── doc.go │ │ ├── forward_requirements.go │ │ ├── forward_requirements_test.go │ │ ├── require.go │ │ ├── require.go.tmpl │ │ ├── require_forward.go │ │ ├── require_forward.go.tmpl │ │ ├── requirements.go │ │ └── requirements_test.go │ │ └── suite │ │ ├── doc.go │ │ ├── interfaces.go │ │ ├── suite.go │ │ └── suite_test.go ├── toqueteos │ └── webbrowser │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── doc.go │ │ ├── examples │ │ └── simple.go │ │ └── webbrowser.go └── tyler-smith │ └── go-bip39 │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── bip39.go │ ├── bip39_test.go │ ├── coverage.txt │ └── wordlist.go └── golang.org └── x ├── crypto ├── .gitattributes ├── .gitignore ├── AUTHORS ├── CONTRIBUTING.md ├── CONTRIBUTORS ├── LICENSE ├── PATENTS ├── README.md ├── acme │ ├── acme.go │ ├── acme_test.go │ ├── autocert │ │ ├── autocert.go │ │ ├── autocert_test.go │ │ ├── cache.go │ │ ├── cache_test.go │ │ ├── example_test.go │ │ ├── listener.go │ │ ├── renewal.go │ │ └── renewal_test.go │ ├── jws.go │ ├── jws_test.go │ ├── types.go │ └── types_test.go ├── bcrypt │ ├── base64.go │ ├── bcrypt.go │ └── bcrypt_test.go ├── blake2b │ ├── blake2b.go │ ├── blake2bAVX2_amd64.go │ ├── blake2bAVX2_amd64.s │ ├── blake2b_amd64.go │ ├── blake2b_amd64.s │ ├── blake2b_generic.go │ ├── blake2b_ref.go │ ├── blake2b_test.go │ ├── blake2x.go │ └── register.go ├── blake2s │ ├── blake2s.go │ ├── blake2s_386.go │ ├── blake2s_386.s │ ├── blake2s_amd64.go │ ├── blake2s_amd64.s │ ├── blake2s_generic.go │ ├── blake2s_ref.go │ ├── blake2s_test.go │ ├── blake2x.go │ └── register.go ├── blowfish │ ├── block.go │ ├── blowfish_test.go │ ├── cipher.go │ └── const.go ├── bn256 │ ├── bn256.go │ ├── bn256_test.go │ ├── constants.go │ ├── curve.go │ ├── example_test.go │ ├── gfp12.go │ ├── gfp2.go │ ├── gfp6.go │ ├── optate.go │ └── twist.go ├── cast5 │ ├── cast5.go │ └── cast5_test.go ├── chacha20poly1305 │ ├── chacha20poly1305.go │ ├── chacha20poly1305_amd64.go │ ├── chacha20poly1305_amd64.s │ ├── chacha20poly1305_generic.go │ ├── chacha20poly1305_noasm.go │ ├── chacha20poly1305_test.go │ ├── chacha20poly1305_vectors_test.go │ └── internal │ │ └── chacha20 │ │ ├── chacha_generic.go │ │ └── chacha_test.go ├── codereview.cfg ├── cryptobyte │ ├── asn1.go │ ├── asn1 │ │ └── asn1.go │ ├── asn1_test.go │ ├── builder.go │ ├── cryptobyte_test.go │ ├── example_test.go │ └── string.go ├── curve25519 │ ├── const_amd64.h │ ├── const_amd64.s │ ├── cswap_amd64.s │ ├── curve25519.go │ ├── curve25519_test.go │ ├── doc.go │ ├── freeze_amd64.s │ ├── ladderstep_amd64.s │ ├── mont25519_amd64.go │ ├── mul_amd64.s │ └── square_amd64.s ├── ed25519 │ ├── ed25519.go │ ├── ed25519_test.go │ ├── internal │ │ └── edwards25519 │ │ │ ├── const.go │ │ │ └── edwards25519.go │ └── testdata │ │ └── sign.input.gz ├── hkdf │ ├── example_test.go │ ├── hkdf.go │ └── hkdf_test.go ├── md4 │ ├── example_test.go │ ├── md4.go │ ├── md4_test.go │ └── md4block.go ├── nacl │ ├── auth │ │ ├── auth.go │ │ ├── auth_test.go │ │ └── example_test.go │ ├── box │ │ ├── box.go │ │ ├── box_test.go │ │ └── example_test.go │ └── secretbox │ │ ├── example_test.go │ │ ├── secretbox.go │ │ └── secretbox_test.go ├── ocsp │ ├── ocsp.go │ └── ocsp_test.go ├── openpgp │ ├── armor │ │ ├── armor.go │ │ ├── armor_test.go │ │ └── encode.go │ ├── canonical_text.go │ ├── canonical_text_test.go │ ├── clearsign │ │ ├── clearsign.go │ │ └── clearsign_test.go │ ├── elgamal │ │ ├── elgamal.go │ │ └── elgamal_test.go │ ├── errors │ │ └── errors.go │ ├── keys.go │ ├── keys_test.go │ ├── packet │ │ ├── compressed.go │ │ ├── compressed_test.go │ │ ├── config.go │ │ ├── encrypted_key.go │ │ ├── encrypted_key_test.go │ │ ├── literal.go │ │ ├── ocfb.go │ │ ├── ocfb_test.go │ │ ├── one_pass_signature.go │ │ ├── opaque.go │ │ ├── opaque_test.go │ │ ├── packet.go │ │ ├── packet_test.go │ │ ├── private_key.go │ │ ├── private_key_test.go │ │ ├── public_key.go │ │ ├── public_key_test.go │ │ ├── public_key_v3.go │ │ ├── public_key_v3_test.go │ │ ├── reader.go │ │ ├── signature.go │ │ ├── signature_test.go │ │ ├── signature_v3.go │ │ ├── signature_v3_test.go │ │ ├── symmetric_key_encrypted.go │ │ ├── symmetric_key_encrypted_test.go │ │ ├── symmetrically_encrypted.go │ │ ├── symmetrically_encrypted_test.go │ │ ├── userattribute.go │ │ ├── userattribute_test.go │ │ ├── userid.go │ │ └── userid_test.go │ ├── read.go │ ├── read_test.go │ ├── s2k │ │ ├── s2k.go │ │ └── s2k_test.go │ ├── write.go │ └── write_test.go ├── otr │ ├── libotr_test_helper.c │ ├── otr.go │ ├── otr_test.go │ └── smp.go ├── pbkdf2 │ ├── pbkdf2.go │ └── pbkdf2_test.go ├── pkcs12 │ ├── bmp-string.go │ ├── bmp-string_test.go │ ├── crypto.go │ ├── crypto_test.go │ ├── errors.go │ ├── internal │ │ └── rc2 │ │ │ ├── bench_test.go │ │ │ ├── rc2.go │ │ │ └── rc2_test.go │ ├── mac.go │ ├── mac_test.go │ ├── pbkdf.go │ ├── pbkdf_test.go │ ├── pkcs12.go │ ├── pkcs12_test.go │ └── safebags.go ├── poly1305 │ ├── poly1305.go │ ├── poly1305_test.go │ ├── sum_amd64.go │ ├── sum_amd64.s │ ├── sum_arm.go │ ├── sum_arm.s │ └── sum_ref.go ├── ripemd160 │ ├── ripemd160.go │ ├── ripemd160_test.go │ └── ripemd160block.go ├── salsa20 │ ├── salsa │ │ ├── hsalsa20.go │ │ ├── salsa2020_amd64.s │ │ ├── salsa208.go │ │ ├── salsa20_amd64.go │ │ ├── salsa20_ref.go │ │ └── salsa_test.go │ ├── salsa20.go │ └── salsa20_test.go ├── scrypt │ ├── example_test.go │ ├── scrypt.go │ └── scrypt_test.go ├── sha3 │ ├── doc.go │ ├── hashes.go │ ├── keccakf.go │ ├── keccakf_amd64.go │ ├── keccakf_amd64.s │ ├── register.go │ ├── sha3.go │ ├── sha3_test.go │ ├── shake.go │ ├── testdata │ │ └── keccakKats.json.deflate │ ├── xor.go │ ├── xor_generic.go │ └── xor_unaligned.go ├── ssh │ ├── agent │ │ ├── client.go │ │ ├── client_test.go │ │ ├── example_test.go │ │ ├── forward.go │ │ ├── keyring.go │ │ ├── keyring_test.go │ │ ├── server.go │ │ ├── server_test.go │ │ └── testdata_test.go │ ├── benchmark_test.go │ ├── buffer.go │ ├── buffer_test.go │ ├── certs.go │ ├── certs_test.go │ ├── channel.go │ ├── cipher.go │ ├── cipher_test.go │ ├── client.go │ ├── client_auth.go │ ├── client_auth_test.go │ ├── client_test.go │ ├── common.go │ ├── connection.go │ ├── doc.go │ ├── example_test.go │ ├── handshake.go │ ├── handshake_test.go │ ├── kex.go │ ├── kex_test.go │ ├── keys.go │ ├── keys_test.go │ ├── knownhosts │ │ ├── knownhosts.go │ │ └── knownhosts_test.go │ ├── mac.go │ ├── mempipe_test.go │ ├── messages.go │ ├── messages_test.go │ ├── mux.go │ ├── mux_test.go │ ├── server.go │ ├── session.go │ ├── session_test.go │ ├── streamlocal.go │ ├── tcpip.go │ ├── tcpip_test.go │ ├── terminal │ │ ├── terminal.go │ │ ├── terminal_test.go │ │ ├── util.go │ │ ├── util_bsd.go │ │ ├── util_linux.go │ │ ├── util_plan9.go │ │ ├── util_solaris.go │ │ └── util_windows.go │ ├── test │ │ ├── agent_unix_test.go │ │ ├── cert_test.go │ │ ├── dial_unix_test.go │ │ ├── doc.go │ │ ├── forward_unix_test.go │ │ ├── session_test.go │ │ ├── test_unix_test.go │ │ └── testdata_test.go │ ├── testdata │ │ ├── doc.go │ │ └── keys.go │ ├── testdata_test.go │ ├── transport.go │ └── transport_test.go ├── tea │ ├── cipher.go │ └── tea_test.go ├── twofish │ ├── twofish.go │ └── twofish_test.go ├── xtea │ ├── block.go │ ├── cipher.go │ └── xtea_test.go └── xts │ ├── xts.go │ └── xts_test.go └── sys ├── .gitattributes ├── .gitignore ├── AUTHORS ├── CONTRIBUTING.md ├── CONTRIBUTORS ├── LICENSE ├── PATENTS ├── README.md ├── codereview.cfg ├── plan9 ├── asm.s ├── asm_plan9_386.s ├── asm_plan9_amd64.s ├── const_plan9.go ├── dir_plan9.go ├── env_plan9.go ├── env_unset.go ├── errors_plan9.go ├── mkall.sh ├── mkerrors.sh ├── mksyscall.pl ├── mksysnum_plan9.sh ├── pwd_go15_plan9.go ├── pwd_plan9.go ├── race.go ├── race0.go ├── str.go ├── syscall.go ├── syscall_plan9.go ├── syscall_test.go ├── zsyscall_plan9_386.go ├── zsyscall_plan9_amd64.go └── zsysnum_plan9.go ├── unix ├── .gitignore ├── README.md ├── asm_darwin_386.s ├── asm_darwin_amd64.s ├── asm_darwin_arm.s ├── asm_darwin_arm64.s ├── asm_dragonfly_amd64.s ├── asm_freebsd_386.s ├── asm_freebsd_amd64.s ├── asm_freebsd_arm.s ├── asm_linux_386.s ├── asm_linux_amd64.s ├── asm_linux_arm.s ├── asm_linux_arm64.s ├── asm_linux_mips64x.s ├── asm_linux_mipsx.s ├── asm_linux_ppc64x.s ├── asm_linux_s390x.s ├── asm_netbsd_386.s ├── asm_netbsd_amd64.s ├── asm_netbsd_arm.s ├── asm_openbsd_386.s ├── asm_openbsd_amd64.s ├── asm_openbsd_arm.s ├── asm_solaris_amd64.s ├── bluetooth_linux.go ├── cap_freebsd.go ├── constants.go ├── creds_test.go ├── dev_darwin.go ├── dev_darwin_test.go ├── dev_dragonfly.go ├── dev_dragonfly_test.go ├── dev_freebsd.go ├── dev_linux.go ├── dev_linux_test.go ├── dev_netbsd.go ├── dev_netbsd_test.go ├── dev_openbsd.go ├── dev_openbsd_test.go ├── dev_solaris_test.go ├── dirent.go ├── endian_big.go ├── endian_little.go ├── env_unix.go ├── env_unset.go ├── errors_freebsd_386.go ├── errors_freebsd_amd64.go ├── errors_freebsd_arm.go ├── export_test.go ├── file_unix.go ├── flock.go ├── flock_linux_32bit.go ├── gccgo.go ├── gccgo_c.c ├── gccgo_linux_amd64.go ├── linux │ ├── Dockerfile │ ├── mkall.go │ ├── mksysnum.pl │ └── types.go ├── mkall.sh ├── mkerrors.sh ├── mkpost.go ├── mksyscall.pl ├── mksyscall_solaris.pl ├── mksysctl_openbsd.pl ├── mksysnum_darwin.pl ├── mksysnum_dragonfly.pl ├── mksysnum_freebsd.pl ├── mksysnum_netbsd.pl ├── mksysnum_openbsd.pl ├── mmap_unix_test.go ├── openbsd_pledge.go ├── openbsd_test.go ├── pagesize_unix.go ├── race.go ├── race0.go ├── sockcmsg_linux.go ├── sockcmsg_unix.go ├── str.go ├── syscall.go ├── syscall_bsd.go ├── syscall_bsd_test.go ├── syscall_darwin.go ├── syscall_darwin_386.go ├── syscall_darwin_amd64.go ├── syscall_darwin_arm.go ├── syscall_darwin_arm64.go ├── syscall_dragonfly.go ├── syscall_dragonfly_amd64.go ├── syscall_freebsd.go ├── syscall_freebsd_386.go ├── syscall_freebsd_amd64.go ├── syscall_freebsd_arm.go ├── syscall_freebsd_test.go ├── syscall_linux.go ├── syscall_linux_386.go ├── syscall_linux_amd64.go ├── syscall_linux_amd64_gc.go ├── syscall_linux_arm.go ├── syscall_linux_arm64.go ├── syscall_linux_mips64x.go ├── syscall_linux_mipsx.go ├── syscall_linux_ppc64x.go ├── syscall_linux_s390x.go ├── syscall_linux_sparc64.go ├── syscall_linux_test.go ├── syscall_netbsd.go ├── syscall_netbsd_386.go ├── syscall_netbsd_amd64.go ├── syscall_netbsd_arm.go ├── syscall_no_getwd.go ├── syscall_openbsd.go ├── syscall_openbsd_386.go ├── syscall_openbsd_amd64.go ├── syscall_openbsd_arm.go ├── syscall_solaris.go ├── syscall_solaris_amd64.go ├── syscall_solaris_test.go ├── syscall_test.go ├── syscall_unix.go ├── syscall_unix_gc.go ├── syscall_unix_test.go ├── timestruct.go ├── types_darwin.go ├── types_dragonfly.go ├── types_freebsd.go ├── types_netbsd.go ├── types_openbsd.go ├── types_solaris.go ├── zerrors_darwin_386.go ├── zerrors_darwin_amd64.go ├── zerrors_darwin_arm.go ├── zerrors_darwin_arm64.go ├── zerrors_dragonfly_amd64.go ├── zerrors_freebsd_386.go ├── zerrors_freebsd_amd64.go ├── zerrors_freebsd_arm.go ├── zerrors_linux_386.go ├── zerrors_linux_amd64.go ├── zerrors_linux_arm.go ├── zerrors_linux_arm64.go ├── zerrors_linux_mips.go ├── zerrors_linux_mips64.go ├── zerrors_linux_mips64le.go ├── zerrors_linux_mipsle.go ├── zerrors_linux_ppc64.go ├── zerrors_linux_ppc64le.go ├── zerrors_linux_s390x.go ├── zerrors_linux_sparc64.go ├── zerrors_netbsd_386.go ├── zerrors_netbsd_amd64.go ├── zerrors_netbsd_arm.go ├── zerrors_openbsd_386.go ├── zerrors_openbsd_amd64.go ├── zerrors_openbsd_arm.go ├── zerrors_solaris_amd64.go ├── zptrace386_linux.go ├── zptracearm_linux.go ├── zptracemips_linux.go ├── zptracemipsle_linux.go ├── zsyscall_darwin_386.go ├── zsyscall_darwin_amd64.go ├── zsyscall_darwin_arm.go ├── zsyscall_darwin_arm64.go ├── zsyscall_dragonfly_amd64.go ├── zsyscall_freebsd_386.go ├── zsyscall_freebsd_amd64.go ├── zsyscall_freebsd_arm.go ├── zsyscall_linux_386.go ├── zsyscall_linux_amd64.go ├── zsyscall_linux_arm.go ├── zsyscall_linux_arm64.go ├── zsyscall_linux_mips.go ├── zsyscall_linux_mips64.go ├── zsyscall_linux_mips64le.go ├── zsyscall_linux_mipsle.go ├── zsyscall_linux_ppc64.go ├── zsyscall_linux_ppc64le.go ├── zsyscall_linux_s390x.go ├── zsyscall_linux_sparc64.go ├── zsyscall_netbsd_386.go ├── zsyscall_netbsd_amd64.go ├── zsyscall_netbsd_arm.go ├── zsyscall_openbsd_386.go ├── zsyscall_openbsd_amd64.go ├── zsyscall_openbsd_arm.go ├── zsyscall_solaris_amd64.go ├── zsysctl_openbsd_386.go ├── zsysctl_openbsd_amd64.go ├── zsysctl_openbsd_arm.go ├── zsysnum_darwin_386.go ├── zsysnum_darwin_amd64.go ├── zsysnum_darwin_arm.go ├── zsysnum_darwin_arm64.go ├── zsysnum_dragonfly_amd64.go ├── zsysnum_freebsd_386.go ├── zsysnum_freebsd_amd64.go ├── zsysnum_freebsd_arm.go ├── zsysnum_linux_386.go ├── zsysnum_linux_amd64.go ├── zsysnum_linux_arm.go ├── zsysnum_linux_arm64.go ├── zsysnum_linux_mips.go ├── zsysnum_linux_mips64.go ├── zsysnum_linux_mips64le.go ├── zsysnum_linux_mipsle.go ├── zsysnum_linux_ppc64.go ├── zsysnum_linux_ppc64le.go ├── zsysnum_linux_s390x.go ├── zsysnum_linux_sparc64.go ├── zsysnum_netbsd_386.go ├── zsysnum_netbsd_amd64.go ├── zsysnum_netbsd_arm.go ├── zsysnum_openbsd_386.go ├── zsysnum_openbsd_amd64.go ├── zsysnum_openbsd_arm.go ├── zsysnum_solaris_amd64.go ├── ztypes_darwin_386.go ├── ztypes_darwin_amd64.go ├── ztypes_darwin_arm.go ├── ztypes_darwin_arm64.go ├── ztypes_dragonfly_amd64.go ├── ztypes_freebsd_386.go ├── ztypes_freebsd_amd64.go ├── ztypes_freebsd_arm.go ├── ztypes_linux_386.go ├── ztypes_linux_amd64.go ├── ztypes_linux_arm.go ├── ztypes_linux_arm64.go ├── ztypes_linux_mips.go ├── ztypes_linux_mips64.go ├── ztypes_linux_mips64le.go ├── ztypes_linux_mipsle.go ├── ztypes_linux_ppc64.go ├── ztypes_linux_ppc64le.go ├── ztypes_linux_s390x.go ├── ztypes_linux_sparc64.go ├── ztypes_netbsd_386.go ├── ztypes_netbsd_amd64.go ├── ztypes_netbsd_arm.go ├── ztypes_openbsd_386.go ├── ztypes_openbsd_amd64.go ├── ztypes_openbsd_arm.go └── ztypes_solaris_amd64.go └── windows ├── asm_windows_386.s ├── asm_windows_amd64.s ├── dll_windows.go ├── env_unset.go ├── env_windows.go ├── eventlog.go ├── exec_windows.go ├── memory_windows.go ├── mksyscall.go ├── race.go ├── race0.go ├── registry ├── export_test.go ├── key.go ├── mksyscall.go ├── registry_test.go ├── syscall.go ├── value.go └── zsyscall_windows.go ├── security_windows.go ├── service.go ├── str.go ├── svc ├── debug │ ├── log.go │ └── service.go ├── event.go ├── eventlog │ ├── install.go │ ├── log.go │ └── log_test.go ├── example │ ├── beep.go │ ├── install.go │ ├── main.go │ ├── manage.go │ └── service.go ├── go12.c ├── go12.go ├── go13.go ├── mgr │ ├── config.go │ ├── mgr.go │ ├── mgr_test.go │ └── service.go ├── security.go ├── service.go ├── svc_test.go ├── sys_386.s └── sys_amd64.s ├── syscall.go ├── syscall_test.go ├── syscall_windows.go ├── syscall_windows_test.go ├── types_windows.go ├── types_windows_386.go ├── types_windows_amd64.go └── zsyscall_windows.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/.gitignore -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/README.md -------------------------------------------------------------------------------- /_vendor-20171101171736/github.com/btcsuite/go-flags/termsize_plan9.go: -------------------------------------------------------------------------------- 1 | package flags 2 | 3 | func getTerminalColumns() int { 4 | return 80 5 | } 6 | -------------------------------------------------------------------------------- /_vendor-20171101171736/github.com/onsi/ginkgo/integration/integration.go: -------------------------------------------------------------------------------- 1 | package integration 2 | -------------------------------------------------------------------------------- /_vendor-20171101171736/github.com/skycoin/skycoin/src/consensus/public_broadcast_channel/public_broadcast_channel.go: -------------------------------------------------------------------------------- 1 | package public_broadcast_channel 2 | -------------------------------------------------------------------------------- /_vendor-20171101171736/github.com/skycoin/skycoin/vendor/github.com/anacrolix/missinggo/units.go: -------------------------------------------------------------------------------- 1 | package missinggo 2 | 3 | const MiB = 1 << 20 4 | -------------------------------------------------------------------------------- /_vendor-20171101171736/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/_vendor-20171101171736/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /_vendor-20171101171736/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/_vendor-20171101171736/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /_vendor-20171101171736/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/_vendor-20171101171736/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /_vendor-20171101171736/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/_vendor-20171101171736/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /_vendor-20171101171736/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/_vendor-20171101171736/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /_vendor-20171101171736/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/_vendor-20171101171736/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /_vendor-20171101171736/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/_vendor-20171101171736/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /_vendor-20171101171736/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/_vendor-20171101171736/manifest -------------------------------------------------------------------------------- /client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/client.sh -------------------------------------------------------------------------------- /cmd/btc/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/cmd/btc/install.sh -------------------------------------------------------------------------------- /cmd/btc/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/cmd/btc/main.go -------------------------------------------------------------------------------- /cmd/btc_check/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/cmd/btc_check/main.go -------------------------------------------------------------------------------- /cmd/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/cmd/client/client.go -------------------------------------------------------------------------------- /cmd/decode_tx/decodetx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/cmd/decode_tx/decodetx.go -------------------------------------------------------------------------------- /cmd/server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/cmd/server/main.go -------------------------------------------------------------------------------- /server.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | go run cmd/server/main.go $@ 3 | -------------------------------------------------------------------------------- /src/api/mobile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/api/mobile/README.md -------------------------------------------------------------------------------- /src/api/mobile/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/api/mobile/api.go -------------------------------------------------------------------------------- /src/api/mobile/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/api/mobile/api_test.go -------------------------------------------------------------------------------- /src/api/mobile/bitcoin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/api/mobile/bitcoin.go -------------------------------------------------------------------------------- /src/api/mobile/coin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/api/mobile/coin.go -------------------------------------------------------------------------------- /src/api/mobile/coiner_mock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/api/mobile/coiner_mock_test.go -------------------------------------------------------------------------------- /src/client/account/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/client/account/account.go -------------------------------------------------------------------------------- /src/client/account/account_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/client/account/account_test.go -------------------------------------------------------------------------------- /src/client/api/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/client/api/account.go -------------------------------------------------------------------------------- /src/client/api/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/client/api/admin.go -------------------------------------------------------------------------------- /src/client/api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/client/api/api.go -------------------------------------------------------------------------------- /src/client/api/balance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/client/api/balance.go -------------------------------------------------------------------------------- /src/client/api/coin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/client/api/coin.go -------------------------------------------------------------------------------- /src/client/api/deposit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/client/api/deposit.go -------------------------------------------------------------------------------- /src/client/api/order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/client/api/order.go -------------------------------------------------------------------------------- /src/client/api/txn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/client/api/txn.go -------------------------------------------------------------------------------- /src/client/api/utxo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/client/api/utxo.go -------------------------------------------------------------------------------- /src/client/api/wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/client/api/wallet.go -------------------------------------------------------------------------------- /src/client/api/withdraw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/client/api/withdraw.go -------------------------------------------------------------------------------- /src/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/client/client.go -------------------------------------------------------------------------------- /src/client/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/client/client_test.go -------------------------------------------------------------------------------- /src/client/router/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/client/router/router.go -------------------------------------------------------------------------------- /src/coin/aynrandcoin/aynrandcoin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/coin/aynrandcoin/aynrandcoin.go -------------------------------------------------------------------------------- /src/coin/bitcoin/bitcoin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/coin/bitcoin/bitcoin.go -------------------------------------------------------------------------------- /src/coin/bitcoin/blkchninfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/coin/bitcoin/blkchninfo.go -------------------------------------------------------------------------------- /src/coin/bitcoin/blkexplr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/coin/bitcoin/blkexplr.go -------------------------------------------------------------------------------- /src/coin/bitcoin/blkexplr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/coin/bitcoin/blkexplr_test.go -------------------------------------------------------------------------------- /src/coin/bitcoin/gateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/coin/bitcoin/gateway.go -------------------------------------------------------------------------------- /src/coin/bitcoin/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/coin/bitcoin/transaction.go -------------------------------------------------------------------------------- /src/coin/bitcoin/transaction_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/coin/bitcoin/transaction_test.go -------------------------------------------------------------------------------- /src/coin/bitcoin/utxo_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/coin/bitcoin/utxo_manager.go -------------------------------------------------------------------------------- /src/coin/bitcoin/wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/coin/bitcoin/wallet.go -------------------------------------------------------------------------------- /src/coin/coin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/coin/coin.go -------------------------------------------------------------------------------- /src/coin/fishercoin/fishercoin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/coin/fishercoin/fishercoin.go -------------------------------------------------------------------------------- /src/coin/lifecoin/lifecoin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/coin/lifecoin/lifecoin.go -------------------------------------------------------------------------------- /src/coin/metalicoin/metalicoin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/coin/metalicoin/metalicoin.go -------------------------------------------------------------------------------- /src/coin/mzcoin/mzcoin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/coin/mzcoin/mzcoin.go -------------------------------------------------------------------------------- /src/coin/shellcoin/shellcoin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/coin/shellcoin/shellcoin.go -------------------------------------------------------------------------------- /src/coin/skycoin/skycoin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/coin/skycoin/skycoin.go -------------------------------------------------------------------------------- /src/coin/skycoin/skycoin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/coin/skycoin/skycoin_test.go -------------------------------------------------------------------------------- /src/coin/skycoin/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/coin/skycoin/transaction.go -------------------------------------------------------------------------------- /src/coin/skycoin/utxo_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/coin/skycoin/utxo_manager.go -------------------------------------------------------------------------------- /src/coin/skycoin/wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/coin/skycoin/wallet.go -------------------------------------------------------------------------------- /src/coin/suncoin/suncoin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/coin/suncoin/suncoin.go -------------------------------------------------------------------------------- /src/pp/gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/pp/gen.sh -------------------------------------------------------------------------------- /src/pp/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/pp/helper.go -------------------------------------------------------------------------------- /src/pp/pp.account.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/pp/pp.account.pb.go -------------------------------------------------------------------------------- /src/pp/pp.account.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/pp/pp.account.proto -------------------------------------------------------------------------------- /src/pp/pp.admin.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/pp/pp.admin.pb.go -------------------------------------------------------------------------------- /src/pp/pp.admin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/pp/pp.admin.proto -------------------------------------------------------------------------------- /src/pp/pp.balance.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/pp/pp.balance.pb.go -------------------------------------------------------------------------------- /src/pp/pp.balance.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/pp/pp.balance.proto -------------------------------------------------------------------------------- /src/pp/pp.coin.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/pp/pp.coin.pb.go -------------------------------------------------------------------------------- /src/pp/pp.coin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/pp/pp.coin.proto -------------------------------------------------------------------------------- /src/pp/pp.common.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/pp/pp.common.pb.go -------------------------------------------------------------------------------- /src/pp/pp.common.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/pp/pp.common.proto -------------------------------------------------------------------------------- /src/pp/pp.deposit.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/pp/pp.deposit.pb.go -------------------------------------------------------------------------------- /src/pp/pp.deposit.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/pp/pp.deposit.proto -------------------------------------------------------------------------------- /src/pp/pp.encrypt.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/pp/pp.encrypt.pb.go -------------------------------------------------------------------------------- /src/pp/pp.encrypt.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/pp/pp.encrypt.proto -------------------------------------------------------------------------------- /src/pp/pp.order.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/pp/pp.order.pb.go -------------------------------------------------------------------------------- /src/pp/pp.order.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/pp/pp.order.proto -------------------------------------------------------------------------------- /src/pp/pp.output.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/pp/pp.output.pb.go -------------------------------------------------------------------------------- /src/pp/pp.output.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/pp/pp.output.proto -------------------------------------------------------------------------------- /src/pp/pp.request.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/pp/pp.request.pb.go -------------------------------------------------------------------------------- /src/pp/pp.request.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/pp/pp.request.proto -------------------------------------------------------------------------------- /src/pp/pp.transaction.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/pp/pp.transaction.pb.go -------------------------------------------------------------------------------- /src/pp/pp.transaction.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/pp/pp.transaction.proto -------------------------------------------------------------------------------- /src/pp/pp.utxo.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/pp/pp.utxo.pb.go -------------------------------------------------------------------------------- /src/pp/pp.utxo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/pp/pp.utxo.proto -------------------------------------------------------------------------------- /src/pp/pp.withdrawal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/pp/pp.withdrawal.pb.go -------------------------------------------------------------------------------- /src/pp/pp.withdrawal.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/pp/pp.withdrawal.proto -------------------------------------------------------------------------------- /src/server/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/server/account/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/server/account/account.go -------------------------------------------------------------------------------- /src/server/account/account_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/server/account/account_test.go -------------------------------------------------------------------------------- /src/server/account/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/server/account/manager.go -------------------------------------------------------------------------------- /src/server/account/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/server/account/manager_test.go -------------------------------------------------------------------------------- /src/server/api/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/server/api/account.go -------------------------------------------------------------------------------- /src/server/api/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/server/api/admin.go -------------------------------------------------------------------------------- /src/server/api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/server/api/api.go -------------------------------------------------------------------------------- /src/server/api/balance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/server/api/balance.go -------------------------------------------------------------------------------- /src/server/api/coin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/server/api/coin.go -------------------------------------------------------------------------------- /src/server/api/deposit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/server/api/deposit.go -------------------------------------------------------------------------------- /src/server/api/order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/server/api/order.go -------------------------------------------------------------------------------- /src/server/api/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/server/api/transaction.go -------------------------------------------------------------------------------- /src/server/api/utxos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/server/api/utxos.go -------------------------------------------------------------------------------- /src/server/api/withdrawal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/server/api/withdrawal.go -------------------------------------------------------------------------------- /src/server/engine/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/server/engine/engine.go -------------------------------------------------------------------------------- /src/server/order/book.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/server/order/book.go -------------------------------------------------------------------------------- /src/server/order/book_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/server/order/book_test.go -------------------------------------------------------------------------------- /src/server/order/id_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/server/order/id_gen.go -------------------------------------------------------------------------------- /src/server/order/id_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/server/order/id_test.go -------------------------------------------------------------------------------- /src/server/order/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/server/order/manager.go -------------------------------------------------------------------------------- /src/server/order/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/server/order/manager_test.go -------------------------------------------------------------------------------- /src/server/order/order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/server/order/order.go -------------------------------------------------------------------------------- /src/server/router/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/server/router/net.go -------------------------------------------------------------------------------- /src/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/server/server.go -------------------------------------------------------------------------------- /src/server/tests/api/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/server/tests/api/api_test.go -------------------------------------------------------------------------------- /src/server/tests/api/auth_test.go: -------------------------------------------------------------------------------- 1 | package api 2 | -------------------------------------------------------------------------------- /src/server/tests/testhelper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/server/tests/testhelper.go -------------------------------------------------------------------------------- /src/server/wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/server/wallet.go -------------------------------------------------------------------------------- /src/sknet/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/sknet/auth.go -------------------------------------------------------------------------------- /src/sknet/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/sknet/client.go -------------------------------------------------------------------------------- /src/sknet/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/sknet/context.go -------------------------------------------------------------------------------- /src/sknet/encrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/sknet/encrypt.go -------------------------------------------------------------------------------- /src/sknet/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/sknet/group.go -------------------------------------------------------------------------------- /src/sknet/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/sknet/request.go -------------------------------------------------------------------------------- /src/sknet/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/sknet/response.go -------------------------------------------------------------------------------- /src/sknet/sknet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/sknet/sknet.go -------------------------------------------------------------------------------- /src/sknet/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/sknet/worker.go -------------------------------------------------------------------------------- /src/wallet/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/wallet/base.go -------------------------------------------------------------------------------- /src/wallet/wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/wallet/wallet.go -------------------------------------------------------------------------------- /src/wallet/wallet_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/wallet/wallet_internal_test.go -------------------------------------------------------------------------------- /src/wallet/wallet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/wallet/wallet_test.go -------------------------------------------------------------------------------- /src/wallet/wallets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/wallet/wallets.go -------------------------------------------------------------------------------- /src/web-app/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/web-app/http.go -------------------------------------------------------------------------------- /src/web-app/static/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | build 3 | node_modules 4 | typings -------------------------------------------------------------------------------- /src/web-app/static/bs-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/web-app/static/bs-config.json -------------------------------------------------------------------------------- /src/web-app/static/gulpfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/web-app/static/gulpfile.ts -------------------------------------------------------------------------------- /src/web-app/static/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/web-app/static/package.json -------------------------------------------------------------------------------- /src/web-app/static/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/web-app/static/src/app/app.component.ts -------------------------------------------------------------------------------- /src/web-app/static/src/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/web-app/static/src/app/app.html -------------------------------------------------------------------------------- /src/web-app/static/src/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/web-app/static/src/app/index.html -------------------------------------------------------------------------------- /src/web-app/static/src/app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/web-app/static/src/app/main.ts -------------------------------------------------------------------------------- /src/web-app/static/src/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/web-app/static/src/assets/css/style.css -------------------------------------------------------------------------------- /src/web-app/static/src/assets/images/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/web-app/static/src/assets/images/green.png -------------------------------------------------------------------------------- /src/web-app/static/src/assets/images/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/web-app/static/src/assets/images/red.png -------------------------------------------------------------------------------- /src/web-app/static/src/assets/script/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/web-app/static/src/assets/script/moment.js -------------------------------------------------------------------------------- /src/web-app/static/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/web-app/static/src/index.html -------------------------------------------------------------------------------- /src/web-app/static/src/systemjs.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/web-app/static/src/systemjs.config.js -------------------------------------------------------------------------------- /src/web-app/static/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/web-app/static/tsconfig.json -------------------------------------------------------------------------------- /src/web-app/static/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/web-app/static/tslint.json -------------------------------------------------------------------------------- /src/web-app/static/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/src/web-app/static/typings.json -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/.gitignore: -------------------------------------------------------------------------------- 1 | *.prof 2 | *.test 3 | *.swp 4 | /bin/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/Makefile -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/README.md -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/bolt_386.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/bolt_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/bolt_arm.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/bolt_arm64.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/bolt_linux.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/bolt_openbsd.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/bolt_ppc.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/bolt_ppc64.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/bolt_ppc64le.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/bolt_s390x.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/bolt_unix.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/bolt_windows.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/boltsync_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/boltsync_unix.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/bucket.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bucket_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/bucket_test.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/cmd/bolt/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/cmd/bolt/main.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/cursor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/cursor.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/cursor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/cursor_test.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/db.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/db_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/db_test.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/doc.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/errors.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/freelist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/freelist.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/freelist_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/freelist_test.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/node.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/node_test.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/page.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/page_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/page_test.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/quick_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/quick_test.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/simulation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/simulation_test.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/tx.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/tx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/boltdb/bolt/tx_test.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/CHANGES -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/README.md -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/addrmgr/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/addrmgr/doc.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/addrmgr/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/addrmgr/log.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/blockchain/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/blockchain/doc.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/blockchain/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/blockchain/log.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/blocklogger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/blocklogger.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/blockmanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/blockmanager.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/btcd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/btcd.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/btcec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/btcec/README.md -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/btcec/btcec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/btcec/btcec.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/btcec/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/btcec/doc.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/btcec/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/btcec/field.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/btcec/privkey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/btcec/privkey.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/btcec/pubkey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/btcec/pubkey.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/btcjson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/btcjson/README.md -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/btcjson/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/btcjson/doc.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/btcjson/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/btcjson/error.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/btcjson/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/btcjson/help.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/chaincfg/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/chaincfg/doc.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/config.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/config_test.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/cpuminer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/cpuminer.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/database/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/database/doc.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/database/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/database/error.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/database/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/database/log.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/deps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/deps.txt -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/discovery.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/doc.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/docs/README.md -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/glide.lock -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/glide.yaml -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/goclean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/goclean.sh -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/log.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/mempool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/mempool/README.md -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/mempool/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/mempool/error.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/mempool/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/mempool/log.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/mempool/policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/mempool/policy.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/mining.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/mining.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/mining/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/mining/README.md -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/mining/mining.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/mining/mining.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/mining/policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/mining/policy.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/mining_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/mining_test.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/params.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/peer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/peer/README.md -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/peer/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/peer/doc.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/peer/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/peer/log.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/peer/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/peer/log_test.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/peer/mruinvmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/peer/mruinvmap.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/peer/peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/peer/peer.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/peer/peer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/peer/peer_test.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/rpcserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/rpcserver.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/rpcserver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/rpcserver_test.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/rpcserverhelp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/rpcserverhelp.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/rpctest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/rpctest/README.md -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/rpctest/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/rpctest/doc.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/rpctest/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/rpctest/node.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/rpctest/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/rpctest/utils.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/rpcwebsocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/rpcwebsocket.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/sample-btcd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/sample-btcd.conf -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/server.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/signal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/signal.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/signalsigterm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/signalsigterm.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/txscript/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/txscript/doc.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/txscript/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/txscript/error.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/txscript/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/txscript/log.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/txscript/sign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/txscript/sign.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/txscript/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/txscript/stack.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/upgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/upgrade.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/upnp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/upnp.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/version.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/wire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/wire/README.md -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/wire/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/wire/common.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/wire/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/wire/doc.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/wire/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/wire/error.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/wire/invvect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/wire/invvect.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/wire/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/wire/message.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/wire/msgaddr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/wire/msgaddr.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/wire/msgalert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/wire/msgalert.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/wire/msgblock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/wire/msgblock.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/wire/msginv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/wire/msginv.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/wire/msgping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/wire/msgping.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/wire/msgpong.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/wire/msgpong.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/wire/msgreject.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/wire/msgreject.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/wire/msgtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/wire/msgtx.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/wire/msgverack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/wire/msgverack.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcd/wire/protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcd/wire/protocol.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btclog/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btclog/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btclog/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btclog/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btclog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btclog/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btclog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btclog/README.md -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btclog/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btclog/doc.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btclog/goclean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btclog/goclean.sh -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btclog/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btclog/interface.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btclog/subsystem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btclog/subsystem.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btclog/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btclog/util.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcutil/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcutil/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcutil/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcutil/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcutil/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcutil/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcutil/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcutil/README.md -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcutil/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcutil/address.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcutil/amount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcutil/amount.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcutil/amount_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcutil/amount_test.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcutil/appdata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcutil/appdata.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcutil/base58/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcutil/base58/doc.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcutil/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcutil/block.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcutil/block_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcutil/block_test.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcutil/certgen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcutil/certgen.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcutil/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcutil/const.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcutil/cov_report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcutil/cov_report.sh -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcutil/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcutil/doc.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcutil/goclean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcutil/goclean.sh -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcutil/hash160.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcutil/hash160.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcutil/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcutil/net.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcutil/net_noop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcutil/net_noop.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcutil/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcutil/tx.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcutil/tx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcutil/tx_test.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcutil/txsort/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcutil/txsort/doc.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcutil/wif.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcutil/wif.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/btcutil/wif_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/btcutil/wif_test.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/fastsha256/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/fastsha256/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/fastsha256/sha256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/fastsha256/sha256.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/golangcrypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/golangcrypto/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/golangcrypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/golangcrypto/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/golangcrypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/golangcrypto/PATENTS -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/golangcrypto/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/golangcrypto/README -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/seelog/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/seelog/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/seelog/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/seelog/README.markdown -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/seelog/cfg_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/seelog/cfg_config.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/seelog/cfg_errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/seelog/cfg_errors.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/seelog/cfg_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/seelog/cfg_parser.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/seelog/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/seelog/doc.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/seelog/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/seelog/format.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/seelog/format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/seelog/format_test.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/seelog/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/seelog/log.go -------------------------------------------------------------------------------- /vendor/github.com/btcsuite/seelog/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/btcsuite/seelog/logger.go -------------------------------------------------------------------------------- /vendor/github.com/codahale/chacha20/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/codahale/chacha20/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/codahale/chacha20/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/codahale/chacha20/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/codahale/chacha20/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/codahale/chacha20/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/codahale/chacha20/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/codahale/chacha20/README.md -------------------------------------------------------------------------------- /vendor/github.com/codahale/chacha20/chacha20.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/codahale/chacha20/chacha20.go -------------------------------------------------------------------------------- /vendor/github.com/codahale/chacha20/core_ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/codahale/chacha20/core_ref.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/davecgh/go-spew/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/davecgh/go-spew/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/davecgh/go-spew/README.md -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/cov_report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/davecgh/go-spew/cov_report.sh -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/bypass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/davecgh/go-spew/spew/bypass.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/davecgh/go-spew/spew/common.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/davecgh/go-spew/spew/config.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/davecgh/go-spew/spew/doc.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/davecgh/go-spew/spew/dump.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/davecgh/go-spew/spew/format.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/spew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/davecgh/go-spew/spew/spew.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/golang/protobuf/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/golang/protobuf/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/golang/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/Make.protobuf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/golang/protobuf/Make.protobuf -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/golang/protobuf/Makefile -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/golang/protobuf/README.md -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/golang/protobuf/proto/Makefile -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/golang/protobuf/proto/clone.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/golang/protobuf/proto/decode.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/golang/protobuf/proto/encode.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/golang/protobuf/proto/equal.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/golang/protobuf/proto/lib.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/golang/protobuf/proto/text.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/golang/protobuf/ptypes/any.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/golang/protobuf/ptypes/doc.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/regen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/golang/protobuf/ptypes/regen.sh -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/op/go-logging/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/op/go-logging/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/op/go-logging/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/op/go-logging/README.md -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/op/go-logging/backend.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/op/go-logging/example_test.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/op/go-logging/format.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/op/go-logging/format_test.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/op/go-logging/level.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/level_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/op/go-logging/level_test.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/log_nix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/op/go-logging/log_nix.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/op/go-logging/log_test.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/log_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/op/go-logging/log_windows.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/op/go-logging/logger.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/op/go-logging/logger_test.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/op/go-logging/memory.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/memory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/op/go-logging/memory_test.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/multi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/op/go-logging/multi.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/multi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/op/go-logging/multi_test.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/syslog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/op/go-logging/syslog.go -------------------------------------------------------------------------------- /vendor/github.com/pmezard/go-difflib/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/pmezard/go-difflib/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pmezard/go-difflib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/pmezard/go-difflib/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pmezard/go-difflib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/pmezard/go-difflib/README.md -------------------------------------------------------------------------------- /vendor/github.com/shopspring/decimal/.gitignore: -------------------------------------------------------------------------------- 1 | .git 2 | *.swp 3 | -------------------------------------------------------------------------------- /vendor/github.com/shopspring/decimal/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/shopspring/decimal/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/shopspring/decimal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/shopspring/decimal/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/shopspring/decimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/shopspring/decimal/README.md -------------------------------------------------------------------------------- /vendor/github.com/shopspring/decimal/decimal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/shopspring/decimal/decimal.go -------------------------------------------------------------------------------- /vendor/github.com/skycoin/skycoin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/skycoin/skycoin/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/skycoin/skycoin/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/skycoin/skycoin/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/skycoin/skycoin/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/skycoin/skycoin/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/skycoin/skycoin/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/skycoin/skycoin/Gopkg.lock -------------------------------------------------------------------------------- /vendor/github.com/skycoin/skycoin/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/skycoin/skycoin/Gopkg.toml -------------------------------------------------------------------------------- /vendor/github.com/skycoin/skycoin/Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/skycoin/skycoin/Installation.md -------------------------------------------------------------------------------- /vendor/github.com/skycoin/skycoin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/skycoin/skycoin/Makefile -------------------------------------------------------------------------------- /vendor/github.com/skycoin/skycoin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/skycoin/skycoin/README.md -------------------------------------------------------------------------------- /vendor/github.com/skycoin/skycoin/cmd/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/skycoin/skycoin/cmd/cli/cli.go -------------------------------------------------------------------------------- /vendor/github.com/skycoin/skycoin/electron/gox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/skycoin/skycoin/electron/gox.sh -------------------------------------------------------------------------------- /vendor/github.com/skycoin/skycoin/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/skycoin/skycoin/run.sh -------------------------------------------------------------------------------- /vendor/github.com/skycoin/skycoin/src/consensus/example/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/github.com/skycoin/skycoin/src/consensus/public_broadcast_channel/public_broadcast_channel.go: -------------------------------------------------------------------------------- 1 | package public_broadcast_channel 2 | -------------------------------------------------------------------------------- /vendor/github.com/skycoin/skycoin/src/gui/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/skycoin/skycoin/src/gui/http.go -------------------------------------------------------------------------------- /vendor/github.com/skycoin/skycoin/src/gui/static/dist/3rdpartylicenses.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/skycoin/skycoin/src/gui/static/src/app/components/layout/back-button/back-button.component.css: -------------------------------------------------------------------------------- 1 | a { 2 | float: right; 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/skycoin/skycoin/src/gui/static/src/app/components/layout/breadcrumb/breadcrumb.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/skycoin/skycoin/src/gui/static/src/app/components/layout/qr-code/qr-code.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/skycoin/skycoin/src/gui/static/src/app/components/layout/qr-code/qr-code.component.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/skycoin/skycoin/src/gui/static/src/app/components/pages/explorer/explorer.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/skycoin/skycoin/src/gui/static/src/app/components/pages/settings/backup/backup.component.css: -------------------------------------------------------------------------------- 1 | md-card { 2 | margin-bottom: 20px; 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/skycoin/skycoin/src/gui/static/src/app/components/pages/settings/outputs/outputs.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/skycoin/skycoin/src/gui/static/src/app/components/pages/settings/pending-transactions/pending-transactions.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/skycoin/skycoin/src/gui/static/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/skycoin/skycoin/src/gui/static/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /vendor/github.com/skycoin/skycoin/src/visor/rpc_test.go: -------------------------------------------------------------------------------- 1 | package visor 2 | -------------------------------------------------------------------------------- /vendor/github.com/skycoin/skycoin/src/visor/testdata/data.db.garbage: -------------------------------------------------------------------------------- 1 | ....garbage file to cause bolt DB error.... 2 | -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/objx/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/objx/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/objx/README.md -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/accessors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/objx/accessors.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/accessors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/objx/accessors_test.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/objx/constants.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/conversions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/objx/conversions.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/objx/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/fixture_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/objx/fixture_test.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/objx/map.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/map_for_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/objx/map_for_test.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/objx/map_test.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/mutations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/objx/mutations.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/mutations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/objx/mutations_test.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/objx/security.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/security_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/objx/security_test.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/tests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/objx/tests.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/tests_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/objx/tests_test.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/objx/value.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/value_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/objx/value_test.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/testify/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/testify/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/testify/Godeps/Readme -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/testify/LICENCE.txt -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/testify/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/testify/README.md -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/testify/assert/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/testify/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/http/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/testify/http/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/mock/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/testify/mock/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/mock/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/testify/mock/mock.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/testify/require/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/suite/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/testify/suite/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/suite/suite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/stretchr/testify/suite/suite.go -------------------------------------------------------------------------------- /vendor/github.com/toqueteos/webbrowser/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/toqueteos/webbrowser/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/toqueteos/webbrowser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/toqueteos/webbrowser/README.md -------------------------------------------------------------------------------- /vendor/github.com/toqueteos/webbrowser/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/toqueteos/webbrowser/doc.go -------------------------------------------------------------------------------- /vendor/github.com/tyler-smith/go-bip39/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/tyler-smith/go-bip39/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/tyler-smith/go-bip39/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/tyler-smith/go-bip39/README.md -------------------------------------------------------------------------------- /vendor/github.com/tyler-smith/go-bip39/bip39.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/github.com/tyler-smith/go-bip39/bip39.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/acme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/acme/acme.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/acme_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/acme/acme_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/autocert/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/acme/autocert/cache.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/acme/jws.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/jws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/acme/jws_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/acme/types.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/acme/types_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bcrypt/base64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/bcrypt/base64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bcrypt/bcrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/bcrypt/bcrypt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bcrypt/bcrypt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/bcrypt/bcrypt_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2b/blake2b.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/blake2b/blake2b.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2b/blake2b_ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/blake2b/blake2b_ref.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2b/blake2x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/blake2b/blake2x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2b/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/blake2b/register.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2s/blake2s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/blake2s/blake2s.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2s/blake2s_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/blake2s/blake2s_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2s/blake2s_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/blake2s/blake2s_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2s/blake2s_ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/blake2s/blake2s_ref.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2s/blake2x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/blake2s/blake2x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2s/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/blake2s/register.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blowfish/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/blowfish/block.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blowfish/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/blowfish/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blowfish/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/blowfish/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/bn256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/bn256/bn256.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/bn256_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/bn256/bn256_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/bn256/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/curve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/bn256/curve.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/bn256/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/gfp12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/bn256/gfp12.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/gfp2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/bn256/gfp2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/gfp6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/bn256/gfp6.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/optate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/bn256/optate.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/twist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/bn256/twist.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/cast5/cast5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/cast5/cast5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/cast5/cast5_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/cast5/cast5_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/cryptobyte/asn1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/cryptobyte/asn1.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/cryptobyte/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/cryptobyte/builder.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/cryptobyte/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/cryptobyte/string.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/curve25519/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/curve25519/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/curve25519/mul_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/curve25519/mul_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ed25519/ed25519.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ed25519/ed25519.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/hkdf/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/hkdf/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/hkdf/hkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/hkdf/hkdf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/hkdf/hkdf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/hkdf/hkdf_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/md4/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/md4/md4.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/md4/md4_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/md4/md4block.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/nacl/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/nacl/auth/auth.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/nacl/auth/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/nacl/auth/auth_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/nacl/box/box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/nacl/box/box.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/nacl/box/box_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/nacl/box/box_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ocsp/ocsp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ocsp/ocsp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ocsp/ocsp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ocsp/ocsp_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/armor/armor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/openpgp/armor/armor.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/openpgp/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/openpgp/keys_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/packet/ocfb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/openpgp/packet/ocfb.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/openpgp/read.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/read_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/openpgp/read_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/s2k/s2k.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/openpgp/s2k/s2k.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/openpgp/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/write_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/openpgp/write_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/otr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/otr/otr.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/otr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/otr/otr_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/smp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/otr/smp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pbkdf2/pbkdf2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/pbkdf2/pbkdf2_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/bmp-string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/pkcs12/bmp-string.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/pkcs12/crypto.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/crypto_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/pkcs12/crypto_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/pkcs12/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/pkcs12/mac.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/mac_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/pkcs12/mac_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/pbkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/pkcs12/pbkdf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/pbkdf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/pkcs12/pbkdf_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/pkcs12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/pkcs12/pkcs12.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/pkcs12_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/pkcs12/pkcs12_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/safebags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/pkcs12/safebags.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/poly1305/poly1305.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/poly1305/poly1305.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/poly1305/sum_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/poly1305/sum_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/poly1305/sum_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/poly1305/sum_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/poly1305/sum_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/poly1305/sum_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/poly1305/sum_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/poly1305/sum_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/poly1305/sum_ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/poly1305/sum_ref.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ripemd160/ripemd160.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ripemd160/ripemd160.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/salsa20/salsa20.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/salsa20/salsa20.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/scrypt/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/scrypt/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/scrypt/scrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/scrypt/scrypt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/scrypt/scrypt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/scrypt/scrypt_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/sha3/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/hashes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/sha3/hashes.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/keccakf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/sha3/keccakf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/keccakf_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/sha3/keccakf_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/keccakf_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/sha3/keccakf_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/sha3/register.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/sha3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/sha3/sha3.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/sha3_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/sha3/sha3_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/shake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/sha3/shake.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/xor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/sha3/xor.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/xor_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/sha3/xor_generic.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/xor_unaligned.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/sha3/xor_unaligned.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/agent/client.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/agent/forward.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/keyring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/agent/keyring.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/agent/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/benchmark_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/buffer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/buffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/buffer_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/certs.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/certs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/certs_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/channel.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/cipher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/cipher_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/client.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/client_auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/client_auth.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/client_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/connection.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/handshake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/handshake.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/handshake_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/handshake_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/kex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/kex_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/keys_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mempipe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/mempipe_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/messages.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/messages_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/messages_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/mux_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/session.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/session_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/streamlocal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/streamlocal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/tcpip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/tcpip.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/tcpip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/tcpip_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/terminal/util.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/test/cert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/test/cert_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/test/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/test/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/testdata/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/testdata/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/testdata/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/testdata/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/testdata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/testdata_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/transport_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/ssh/transport_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/tea/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/tea/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/tea/tea_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/tea/tea_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/twofish/twofish.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/twofish/twofish.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xtea/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/xtea/block.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xtea/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/xtea/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xtea/xtea_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/xtea/xtea_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xts/xts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/xts/xts.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xts/xts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/crypto/xts/xts_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm_plan9_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/plan9/asm_plan9_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm_plan9_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/plan9/asm_plan9_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/const_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/plan9/const_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/dir_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/plan9/dir_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/env_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/plan9/env_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/env_unset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/plan9/env_unset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/errors_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/plan9/errors_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/plan9/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/plan9/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/plan9/mksyscall.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mksysnum_plan9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/plan9/mksysnum_plan9.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/pwd_go15_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/plan9/pwd_go15_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/pwd_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/plan9/pwd_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/plan9/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/plan9/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/syscall_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/plan9/syscall_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/syscall_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/plan9/syscall_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/zsysnum_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/plan9/zsysnum_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/asm_linux_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_mips64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_mipsx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/asm_linux_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_solaris_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bluetooth_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/bluetooth_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/creds_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/creds_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_darwin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/dev_darwin_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/dev_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/dev_linux_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_netbsd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/dev_netbsd_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/dev_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_openbsd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/dev_openbsd_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_solaris_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/dev_solaris_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/endian_little.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/env_unset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/export_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/file_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/file_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/flock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/flock.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/flock_linux_32bit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/flock_linux_32bit.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/linux/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/linux/Dockerfile -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/linux/mkall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/linux/mkall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/linux/mksysnum.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/linux/mksysnum.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/linux/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/linux/types.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/mksyscall.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall_solaris.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/mksyscall_solaris.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_darwin.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/mksysnum_darwin.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mmap_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/mmap_unix_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/openbsd_pledge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/openbsd_pledge.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/openbsd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/openbsd_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/pagesize_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/pagesize_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/syscall_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_no_getwd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/syscall_no_getwd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/syscall_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/syscall_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/syscall_unix_gc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/syscall_unix_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/types_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/types_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/types_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/types_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/types_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/types_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptrace386_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/zptrace386_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptracearm_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/zptracearm_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptracemips_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/zptracemips_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/asm_windows_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/windows/asm_windows_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/dll_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/windows/dll_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/env_unset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/windows/env_unset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/env_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/windows/env_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/windows/eventlog.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/exec_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/windows/exec_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/memory_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/windows/memory_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/windows/mksyscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/registry/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/windows/registry/key.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/registry/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/windows/registry/value.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/debug/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/windows/svc/debug/log.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/windows/svc/event.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/go12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/windows/svc/go12.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/go12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/windows/svc/go12.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/go13.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/windows/svc/go13.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/mgr/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/windows/svc/mgr/config.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/mgr/mgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/windows/svc/mgr/mgr.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/windows/svc/security.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/windows/svc/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/sys_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/windows/svc/sys_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycoin/skycoin-exchange/HEAD/vendor/golang.org/x/sys/windows/syscall.go --------------------------------------------------------------------------------