Commit a53ae30b authored by Pavel Pavlov's avatar Pavel Pavlov

Сreate a test transaction in the block and add it to the chain

parent 8feb8c99
......@@ -7,6 +7,7 @@ using System.Threading.Tasks;
using DeStream.Stratis.Bitcoin.Configuration;
using Moq;
using NBitcoin;
using NBitcoin.Networks;
using NBitcoin.Protocol;
using Stratis.Bitcoin;
using Stratis.Bitcoin.Builder;
......@@ -18,7 +19,9 @@ using Stratis.Bitcoin.Features.MemoryPool;
using Stratis.Bitcoin.Features.Miner;
using Stratis.Bitcoin.Features.RPC;
using Stratis.Bitcoin.Features.Wallet;
using Stratis.Bitcoin.Features.Wallet.Controllers;
using Stratis.Bitcoin.Features.Wallet.Interfaces;
using Stratis.Bitcoin.Features.Wallet.Models;
using Stratis.Bitcoin.IntegrationTests.Common;
using Stratis.Bitcoin.IntegrationTests.Common.EnvironmentMockUpHelpers;
using Stratis.Bitcoin.Interfaces;
......@@ -196,10 +199,50 @@ namespace DeStream.DeStreamD.ForTest
.UseApi()
.AddRPC()
.Build();
Mnemonic _mnemonic1 = node.NodeService<IWalletManager>().CreateWallet("password", "mywallet");
Wallet _wallet = node.NodeService<IWalletManager>().GetWalletByName("mywallet");
(ExtKey ExtKey, string ExtPubKey) accountKeys = WalletTestsHelpers.GenerateAccountKeys(_wallet, "password", "m/44'/0'/0'");
(PubKey PubKey, BitcoinPubKeyAddress Address) spendingKeys = WalletTestsHelpers.GenerateAddressKeys(_wallet, accountKeys.ExtPubKey, "0/0");
(PubKey PubKey, BitcoinPubKeyAddress Address) destinationKeys = WalletTestsHelpers.GenerateAddressKeys(_wallet, accountKeys.ExtPubKey, "0/1");
//Mnemonic _mnemonic1 = node.NodeService<IWalletManager>().CreateWallet("123456", "mywallet");
//Wallet _wallet = node.NodeService<IWalletManager>().GetWalletByName("mywallet");
(PubKey PubKey, BitcoinPubKeyAddress Address) changeKeys = WalletTestsHelpers.GenerateAddressKeys(_wallet, accountKeys.ExtPubKey, "1/0");
var changeAddress = new HdAddress
{
Index = 0,
HdPath = $"m/44'/0'/0'/1/0",
Address = changeKeys.Address.ToString(),
Pubkey = changeKeys.PubKey.ScriptPubKey,
ScriptPubKey = changeKeys.Address.ScriptPubKey,
Transactions = new List<TransactionData>()
};
var spendingAddress = new HdAddress
{
Index = 0,
HdPath = $"m/44'/0'/0'/0/0",
Address = spendingKeys.Address.ToString(),
Pubkey = spendingKeys.PubKey.ScriptPubKey,
ScriptPubKey = spendingKeys.Address.ScriptPubKey,
Transactions = new List<TransactionData>()
};
HdAddress _addr = node.NodeService<IWalletManager>().GetUnusedAddress(new WalletAccountReference("mywallet", "account 0"));
(ConcurrentChain chain, uint256 blockhash, Block block) chainInfo = WalletTestsHelpers.CreateChainAndCreateFirstBlockWithPaymentToAddress(_wallet.Network, _addr);
TransactionData spendingTransaction = WalletTestsHelpers.CreateTransactionDataFromFirstBlock(chainInfo);
_addr.Transactions.Add(spendingTransaction);
// setup a payment to yourself in a new block.
Transaction transaction = WalletTestsHelpers.SetupValidTransaction(_wallet, "password", _addr, destinationKeys.PubKey, changeAddress, new Money(7500), new Money(5000));
Block block = WalletTestsHelpers.AppendTransactionInNewBlockToChain(chainInfo.chain, transaction);
node.NodeService<IWalletManager>().WalletTipHash= block.Header.GetHash();
ChainedHeader chainedBlock = chainInfo.chain.GetBlock(block.GetHash());
node.NodeService<IWalletManager>().ProcessBlock(block, chainedBlock);
HdAddress spentAddressResult = _wallet.AccountsRoot.ElementAt(0).Accounts.ElementAt(0).ExternalAddresses.ElementAt(0);
int qwe123 =1;
//HdAddress _addr = node.NodeService<IWalletManager>().GetUnusedAddress(new WalletAccountReference("mywallet", "account 0"));
//Key _key = _wallet.GetExtendedPrivateKeyForAddress("123456", _addr).PrivateKey;
//var _walletTransactionHandler = ((FullNode)node).NodeService<IWalletTransactionHandler>() as WalletTransactionHandler;
......@@ -210,54 +253,124 @@ namespace DeStream.DeStreamD.ForTest
//var account = _wallet.AccountsRoot.FirstOrDefault();
//TransactionBuildContext context = CreateContext(new WalletAccountReference("mywallet", "account 0"), "123456", _key.PubKey.ScriptPubKey, new Money(777), FeeType.Low, 0);
//Transaction transactionResult = _walletTransactionHandler.BuildTransaction(context);
//int qwe = 1;
//if (node != null)
// await node.RunAsync();
NodeBuilder builder = NodeBuilder.Create(node);
CoreNode stratisSender = builder.CreateStratisPowNode();
CoreNode stratisReceiver = builder.CreateStratisPowNode();
builder.StartAll();
stratisSender.NotInIBD();
stratisReceiver.NotInIBD();
//NodeBuilder builder = NodeBuilder.Create(node);
//CoreNode stratisSender = builder.CreateStratisPowNode();
//CoreNode stratisReceiver = builder.CreateStratisPowNode();
//builder.StartAll();
//stratisSender.NotInIBD();
//stratisReceiver.NotInIBD();
// get a key from the wallet
Mnemonic mnemonic1 = stratisSender.FullNode.WalletManager().CreateWallet("123456", "mywallet");
Mnemonic mnemonic2 = stratisReceiver.FullNode.WalletManager().CreateWallet("123456", "mywallet");
HdAddress addr = stratisSender.FullNode.WalletManager().GetUnusedAddress(new WalletAccountReference("mywallet", "account 0"));
Wallet wallet = stratisSender.FullNode.WalletManager().GetWalletByName("mywallet");
Key key = wallet.GetExtendedPrivateKeyForAddress("123456", addr).PrivateKey;
//// get a key from the wallet
//Mnemonic mnemonic1 = stratisSender.FullNode.WalletManager().CreateWallet("123456", "mywallet");
//Mnemonic mnemonic2 = stratisReceiver.FullNode.WalletManager().CreateWallet("123456", "mywallet");
//HdAddress addr = stratisSender.FullNode.WalletManager().GetUnusedAddress(new WalletAccountReference("mywallet", "account 0"));
//Wallet wallet = stratisSender.FullNode.WalletManager().GetWalletByName("mywallet");
//Key key = wallet.GetExtendedPrivateKeyForAddress("123456", addr).PrivateKey;
stratisSender.SetDummyMinerSecret(new BitcoinSecret(key, stratisSender.FullNode.Network));
int maturity = (int)stratisSender.FullNode.Network.Consensus.CoinbaseMaturity;
stratisSender.GenerateStratis(maturity + 5);
// wait for block repo for block sync to work
//stratisSender.SetDummyMinerSecret(new BitcoinSecret(key, stratisSender.FullNode.Network));
//int maturity = (int)stratisSender.FullNode.Network.Consensus.CoinbaseMaturity;
//stratisSender.GenerateStratis(maturity + 5);
//// wait for block repo for block sync to work
TestHelper.WaitLoop(() => TestHelper.IsNodeSynced(stratisSender));
//TestHelper.WaitLoop(() => TestHelper.IsNodeSynced(stratisSender));
// the mining should add coins to the wallet
long total = stratisSender.FullNode.WalletManager().GetSpendableTransactionsInWallet("mywallet").Sum(s => s.Transaction.Amount);
//// the mining should add coins to the wallet
//long total = stratisSender.FullNode.WalletManager().GetSpendableTransactionsInWallet("mywallet").Sum(s => s.Transaction.Amount);
var walletManager = stratisSender.FullNode.NodeService<IWalletManager>() as WalletManager;
//var walletManager = stratisSender.FullNode.NodeService<IWalletManager>() as WalletManager;
var walletManager1 = ((FullNode)node).NodeService<IWalletManager>() as WalletManager;
//var walletManager1 = ((FullNode)node).NodeService<IWalletManager>() as WalletManager;
HdAddress addr1= ((FullNode)node).WalletManager().GetUnusedAddress(new WalletAccountReference("mywallet", "account 0"));
walletManager.CreateWallet("123456", "mywallet");
HdAddress sendto = walletManager.GetUnusedAddress(new WalletAccountReference("mywallet", "account 0"));
var walletTransactionHandler = ((FullNode)node).NodeService<IWalletTransactionHandler>() as WalletTransactionHandler;
//HdAddress addr1 = ((FullNode)node).WalletManager().GetUnusedAddress(new WalletAccountReference("mywallet", "account 0"));
//walletManager.CreateWallet("123456", "mywallet");
//HdAddress sendto = walletManager.GetUnusedAddress(new WalletAccountReference("mywallet", "account 0"));
//var walletTransactionHandler = ((FullNode)node).NodeService<IWalletTransactionHandler>() as WalletTransactionHandler;
var transactionBuildContext = CreateContext(
new WalletAccountReference("mywallet", "account 0"), "123456", sendto.ScriptPubKey, Money.COIN * 100, FeeType.Medium, 101);
//var transactionBuildContext = CreateContext(
// new WalletAccountReference("mywallet", "account 0"), "123456", sendto.ScriptPubKey, Money.COIN * 100, FeeType.Medium, 101);
Transaction trx = walletTransactionHandler.BuildTransaction(transactionBuildContext);
//Transaction trx = walletTransactionHandler.BuildTransaction(transactionBuildContext);
//if (node != null)
// await node.RunAsync();
//using (NodeBuilder builder = NodeBuilder.Create(node))
//{
// CoreNode stratisSender = builder.CreateStratisPowNode();
// CoreNode stratisReceiver = builder.CreateStratisPowNode();
// builder.StartAll();
// stratisSender.NotInIBD();
// stratisReceiver.NotInIBD();
// // get a key from the wallet
// Mnemonic mnemonic1 = stratisSender.FullNode.WalletManager().CreateWallet("123456", "mywallet");
// Mnemonic mnemonic2 = stratisReceiver.FullNode.WalletManager().CreateWallet("123456", "mywallet");
// //Assert.Equal(12, mnemonic1.Words.Length);
// //Assert.Equal(12, mnemonic2.Words.Length);
// HdAddress addr = stratisSender.FullNode.WalletManager().GetUnusedAddress(new WalletAccountReference("mywallet", "account 0"));
// Wallet wallet = stratisSender.FullNode.WalletManager().GetWalletByName("mywallet");
// Key key = wallet.GetExtendedPrivateKeyForAddress("123456", addr).PrivateKey;
// stratisSender.SetDummyMinerSecret(new BitcoinSecret(key, stratisSender.FullNode.Network));
// int maturity = (int)stratisSender.FullNode.Network.Consensus.CoinbaseMaturity;
// stratisSender.GenerateStratis(maturity + 5);
// // wait for block repo for block sync to work
// TestHelper.WaitLoop(() => TestHelper.IsNodeSynced(stratisSender));
// // the mining should add coins to the wallet
// long total = stratisSender.FullNode.WalletManager().GetSpendableTransactionsInWallet("mywallet").Sum(s => s.Transaction.Amount);
// //Assert.Equal(Money.COIN * 105 * 50, total);
// // sync both nodes
// //stratisSender.CreateRPCClient().AddNode(stratisReceiver.Endpoint, true);
// stratisSender.CreateRPCClient().AddNode(((DeStreamTest)node.Network).Endpoint, true);
// //TestHelper.WaitLoop(() => TestHelper.AreNodesSynced(stratisReceiver, stratisSender));
// TestHelper.WaitLoop(() => TestHelper.AreNodesSyncedTemp(stratisSender, (FullNode)node));
// // send coins to the receiver
// //HdAddress sendto = stratisReceiver.FullNode.WalletManager().GetUnusedAddress(new WalletAccountReference("mywallet", "account 0"));
// HdAddress sendto = ((FullNode)node).WalletManager().GetUnusedAddress(new WalletAccountReference("mywallet", "account 0"));
// Transaction trx = stratisSender.FullNode.WalletTransactionHandler().BuildTransaction(CreateContext(
// new WalletAccountReference("mywallet", "account 0"), "123456", sendto.ScriptPubKey, Money.COIN * 100, FeeType.Medium, 101));
// // broadcast to the other node
// stratisSender.FullNode.NodeService<WalletController>().SendTransaction(new SendTransactionRequest(trx.ToHex()));
// // wait for the trx to arrive
// TestHelper.WaitLoop(() => stratisReceiver.CreateRPCClient().GetRawMempool().Length > 0);
// TestHelper.WaitLoop(() => stratisReceiver.FullNode.WalletManager().GetSpendableTransactionsInWallet("mywallet").Any());
// long receivetotal = stratisReceiver.FullNode.WalletManager().GetSpendableTransactionsInWallet("mywallet").Sum(s => s.Transaction.Amount);
// //Assert.Equal(Money.COIN * 100, receivetotal);
// //Assert.Null(stratisReceiver.FullNode.WalletManager().GetSpendableTransactionsInWallet("mywallet").First().Transaction.BlockHeight);
// // generate two new blocks do the trx is confirmed
// stratisSender.GenerateStratis(1, new List<Transaction>(new[] { stratisSender.FullNode.Network.CreateTransaction(trx.ToBytes()) }));
// stratisSender.GenerateStratis(1);
// // wait for block repo for block sync to work
// TestHelper.WaitLoop(() => TestHelper.IsNodeSynced(stratisSender));
// TestHelper.WaitLoop(() => TestHelper.AreNodesSynced(stratisReceiver, stratisSender));
// TestHelper.WaitLoop(() => maturity + 6 == stratisReceiver.FullNode.WalletManager().GetSpendableTransactionsInWallet("mywallet").First().Transaction.BlockHeight);
//}
}
catch (Exception ex)
{
......
......@@ -2,11 +2,11 @@ regtest=1
rest=1
server=1
txindex=1
rpcuser=0d723c05d8207d152a545f1d3106060617b9134e
rpcpassword=0d723c05d8207d152a545f1d3106060617b9134e
port=10346
rpcport=13972
apiport=10949
rpcuser=e7adac6d6885eece28e28bf52149d749ea478b29
rpcpassword=e7adac6d6885eece28e28bf52149d749ea478b29
port=12204
rpcport=13107
apiport=13940
printtoconsole=1
keypool=10
agentprefix=node10346
agentprefix=node12204
__cookie__:7a1bd544829d4b891ae182fa73dab69b5bd13668c9987e83a595f7a4e315249f
\ No newline at end of file
__cookie__:6b5075e28a0c8589d8f8a2ee2b1960584578ee65f59ffbc58878b98697169afe
\ No newline at end of file
[2018-07-30 19:40:22.5092 1] INFO: Stratis.Bitcoin.FullNode.Initialize Full node initialized on RegTest
[2018-07-30 19:40:22.5092 1] INFO: Stratis.Bitcoin.FullNode.Start Starting node...
[2018-07-30 19:40:23.1318 1] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading finalized block height
[2018-07-30 19:40:23.1495 5] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading chain
[2018-07-30 19:40:23.1495 4] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Chain loaded at height 0
[2018-07-30 19:40:23.1706 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext FlushChain starting
[2018-07-30 19:40:23.1706 4] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Periodic peer flush... starting
[2018-07-30 19:40:24.3056 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Consensus Loop starting
[2018-07-30 19:40:24.3362 1] INFO: Stratis.Bitcoin.Features.MemoryPool.MempoolManager+<LoadPoolAsync>d__25.MoveNext Loading Memory Pool...
[2018-07-30 19:40:24.3362 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext MemoryPool.RelayWorker starting
[2018-07-30 19:40:24.3516 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext wallet persist job starting
[2018-07-30 19:40:24.3516 1] INFO: Stratis.Bitcoin.Features.Wallet.WalletSyncManager.Start WalletSyncManager initialized. Wallet at block 0.
[2018-07-30 19:40:25.1209 1] INFO: Stratis.Bitcoin.Features.RPC.RPCFeature.Initialize RPC Server listening on:
http://[::1]:13972/
http://127.0.0.1:13972/
[2018-07-30 19:40:25.1326 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext DiscoverPeersAsync starting
[2018-07-30 19:40:25.1326 4] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorAddNode.ConnectAsync starting
[2018-07-30 19:40:25.1475 13] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorDiscovery.ConnectAsync starting
[2018-07-30 19:40:25.1637 1] INFO: Stratis.Bitcoin.Connection.ConnectionManager.StartNodeServer Node listening on:
0.0.0.0:10346
[2018-07-30 19:40:25.1637 10] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeriodicLog starting
[2018-07-30 19:40:25.1960 1] INFO: Stratis.Bitcoin.FullNode.Initialize Full node initialized on RegTest
[2018-07-30 19:40:25.1960 1] INFO: Stratis.Bitcoin.FullNode.Start Starting node...
[2018-07-30 19:40:25.6165 1] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading finalized block height
[2018-07-30 19:40:25.6165 6] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading chain
[2018-07-30 19:40:25.6325 6] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Chain loaded at height 0
[2018-07-30 19:40:25.6325 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext FlushChain starting
[2018-07-30 19:40:25.6325 10] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Periodic peer flush... starting
[2018-07-30 19:40:26.5956 10] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Consensus Loop starting
[2018-07-30 19:40:26.6009 1] INFO: Stratis.Bitcoin.Features.MemoryPool.MempoolManager+<LoadPoolAsync>d__25.MoveNext Loading Memory Pool...
[2018-07-30 19:40:26.6009 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext MemoryPool.RelayWorker starting
[2018-07-30 19:40:26.6009 13] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext wallet persist job starting
[2018-07-30 19:40:26.6009 1] INFO: Stratis.Bitcoin.Features.Wallet.WalletSyncManager.Start WalletSyncManager initialized. Wallet at block 0.
[2018-07-30 19:40:26.6214 1] INFO: Stratis.Bitcoin.Features.RPC.RPCFeature.Initialize RPC Server listening on:
http://[::1]:12906/
http://127.0.0.1:12906/
[2018-07-30 19:40:26.6214 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext DiscoverPeersAsync starting
[2018-07-30 19:40:26.6214 12] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorAddNode.ConnectAsync starting
[2018-07-30 19:40:26.6214 12] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorDiscovery.ConnectAsync starting
[2018-07-30 19:40:26.6324 1] INFO: Stratis.Bitcoin.Connection.ConnectionManager.StartNodeServer Node listening on:
0.0.0.0:12731
[2018-07-30 19:40:26.6324 13] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeriodicLog starting
[2018-07-30 19:40:30.1815 13] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/30/2018 19:40:30 agent node10346-StratisBitcoin:1.1.2
Headers.Height: 0 Headers.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
BlockStore.Height: 0 BlockStore.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Consensus.Height: 0 Consensus.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Wallet.Height: No Wallet
======BlockStore======
Pending Blocks: 0
Batch Size: 0 kb / 5000 kb
=======Mempool=======
MempoolSize: 0 DynamicSize: 0 kb OrphanSize: 0
======Connection======
[2018-07-30 19:40:30.8885 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext WalletManager.DownloadChain starting
[2018-07-30 19:40:31.7441 17] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/30/2018 19:40:31 agent node12731-StratisBitcoin:1.1.2
Headers.Height: 0 Headers.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
BlockStore.Height: 0 BlockStore.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Consensus.Height: 0 Consensus.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Wallet.Height: No Wallet
======BlockStore======
Pending Blocks: 0
Batch Size: 0 kb / 5000 kb
=======Mempool=======
MempoolSize: 0 DynamicSize: 0 kb OrphanSize: 0
======Connection======
[2018-07-30 19:40:33.9427 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext WalletManager.DownloadChain starting
[2018-07-30 19:40:35.1949 7] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/30/2018 19:40:35 agent node10346-StratisBitcoin:1.1.2
[2018-07-31 19:27:14.9219 1] INFO: Stratis.Bitcoin.FullNode.Initialize Full node initialized on RegTest
[2018-07-31 19:27:14.9219 1] INFO: Stratis.Bitcoin.FullNode.Start Starting node...
[2018-07-31 19:27:15.4855 1] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading finalized block height
[2018-07-31 19:27:15.5155 5] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading chain
[2018-07-31 19:27:15.5155 4] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Chain loaded at height 0
[2018-07-31 19:27:15.5155 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext FlushChain starting
[2018-07-31 19:27:15.5155 4] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Periodic peer flush... starting
[2018-07-31 19:27:16.7507 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Consensus Loop starting
[2018-07-31 19:27:16.7826 1] INFO: Stratis.Bitcoin.Features.MemoryPool.MempoolManager+<LoadPoolAsync>d__25.MoveNext Loading Memory Pool...
[2018-07-31 19:27:16.7826 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext MemoryPool.RelayWorker starting
[2018-07-31 19:27:16.8345 10] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext wallet persist job starting
[2018-07-31 19:27:16.8345 1] INFO: Stratis.Bitcoin.Features.Wallet.WalletSyncManager.Start WalletSyncManager initialized. Wallet at block 0.
[2018-07-31 19:27:17.7516 1] INFO: Stratis.Bitcoin.Features.RPC.RPCFeature.Initialize RPC Server listening on:
http://[::1]:13107/
http://127.0.0.1:13107/
[2018-07-31 19:27:17.7516 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext DiscoverPeersAsync starting
[2018-07-31 19:27:17.7650 10] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorAddNode.ConnectAsync starting
[2018-07-31 19:27:17.7650 10] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorDiscovery.ConnectAsync starting
[2018-07-31 19:27:17.7965 1] INFO: Stratis.Bitcoin.Connection.ConnectionManager.StartNodeServer Node listening on:
0.0.0.0:12204
[2018-07-31 19:27:17.7965 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeriodicLog starting
[2018-07-31 19:27:17.8281 1] INFO: Stratis.Bitcoin.FullNode.Initialize Full node initialized on RegTest
[2018-07-31 19:27:17.8281 1] INFO: Stratis.Bitcoin.FullNode.Start Starting node...
[2018-07-31 19:27:18.1563 1] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading finalized block height
[2018-07-31 19:27:18.1563 5] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading chain
[2018-07-31 19:27:18.1741 5] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Chain loaded at height 0
[2018-07-31 19:27:18.1741 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext FlushChain starting
[2018-07-31 19:27:18.1741 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Periodic peer flush... starting
[2018-07-31 19:27:19.2660 11] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Consensus Loop starting
[2018-07-31 19:27:19.2660 1] INFO: Stratis.Bitcoin.Features.MemoryPool.MempoolManager+<LoadPoolAsync>d__25.MoveNext Loading Memory Pool...
[2018-07-31 19:27:19.2841 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext MemoryPool.RelayWorker starting
[2018-07-31 19:27:19.2841 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext wallet persist job starting
[2018-07-31 19:27:19.2841 1] INFO: Stratis.Bitcoin.Features.Wallet.WalletSyncManager.Start WalletSyncManager initialized. Wallet at block 0.
[2018-07-31 19:27:19.3000 1] INFO: Stratis.Bitcoin.Features.RPC.RPCFeature.Initialize RPC Server listening on:
http://[::1]:10151/
http://127.0.0.1:10151/
[2018-07-31 19:27:19.3000 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext DiscoverPeersAsync starting
[2018-07-31 19:27:19.3000 17] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorAddNode.ConnectAsync starting
[2018-07-31 19:27:19.3120 17] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorDiscovery.ConnectAsync starting
[2018-07-31 19:27:19.3120 1] INFO: Stratis.Bitcoin.Connection.ConnectionManager.StartNodeServer Node listening on:
0.0.0.0:11419
[2018-07-31 19:27:19.3120 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeriodicLog starting
[2018-07-31 19:27:22.7696 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext WalletManager.DownloadChain starting
[2018-07-31 19:27:23.7812 5] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/31/2018 19:27:23 agent node12204-StratisBitcoin:1.1.2
Headers.Height: 0 Headers.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
BlockStore.Height: 0 BlockStore.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Consensus.Height: 0 Consensus.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
......@@ -95,12 +62,11 @@ Wallet: mywallet, Confirmed balance: 0.00000000
======Connection======
[2018-07-30 19:40:35.9040 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext WalletManager.DownloadChain stopping
[2018-07-30 19:40:36.7576 5] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/30/2018 19:40:36 agent node12731-StratisBitcoin:1.1.2
[2018-07-31 19:27:25.2652 12] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/31/2018 19:27:25 agent node11419-StratisBitcoin:1.1.2
Headers.Height: 0 Headers.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
BlockStore.Height: 0 BlockStore.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Consensus.Height: 0 Consensus.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Wallet.Height: 0 Wallet.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Wallet.Height: No Wallet
======BlockStore======
Pending Blocks: 0
......@@ -109,9 +75,7 @@ Batch Size: 0 kb / 5000 kb
=======Mempool=======
MempoolSize: 0 DynamicSize: 0 kb OrphanSize: 0
======Wallets======
Wallet: mywallet, Confirmed balance: 0.00000000
======Connection======
[2018-07-31 19:27:26.0006 13] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext WalletManager.DownloadChain starting
{
"name": "mywallet",
"encryptedSeed": "6PYPNxKyc1KZYfKRsy977z2ZFWrS3FjvUn1j7Aixg68npYVktFyL5hdw6J",
"chainCode": "Pc4xsmvZQI7XPSb3MYPaj4SwJi2orzCcnQGQclhrcHE=",
"blockLocator": [
"693ad39b4344770574e549de4f93e206cf6a74d6de975b2e43af7df87892c3fd",
"6900103ba5de76d42bcd4e8e6c81a1885b8228261295bc12814940eab8a6fbdd",
"0062cc5614b1c3ac4b18cd127d07734fd0dc8a8bf6f0a1f37115bff2be1d45f0",
"0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206"
],
"encryptedSeed": "6PYRRmj9LDg6GX9gjLKQtFU3M2vBfmssfCcxKMoPpoAQd7VihsrpEGoFRC",
"chainCode": "J4m7mR+SiKuEgfkcCREFdyC6SGa1SFOo4qJ0vrwK5KM=",
"blockLocator": null,
"network": "RegTest",
"creationTime": "1532979628",
"creationTime": "1533065241",
"accountsRoot": [
{
"coinType": 0,
"lastBlockSyncedHeight": 3,
"lastBlockSyncedHash": "693ad39b4344770574e549de4f93e206cf6a74d6de975b2e43af7df87892c3fd",
"accounts": [
{
"index": 0,
"name": "account 0",
"hdPath": "m/44'/0'/0'",
"extPubKey": "tpubDCKPgJQukMY9DTXMpBs7vBXzYDmQCr7JnXyQEKrG7v5SZcQE8B7GtRcahe1wfE3t376hbahSoZEJgKb2uwuoYD7nB3SokRBtZQSquSffHMx",
"creationTime": "1532979629",
"extPubKey": "tpubDDaz4wY7b9Ru2NXzZShzF9762L1jynBFpgR1PHWsr4XK8YddednFEx3J8gdckK3kqEFHAYnsci6A4wi27GFGV6x6ben22UP3TxqSDTBTc3T",
"creationTime": "1533065241",
"externalAddresses": [
{
"index": 0,
"scriptPubKey": "76a91425f4a612679294e2d0948c385a06fd6279d6694888ac",
"pubkey": "2103b73bb8fcc01265e6ea832e439e24750ea0de03a57e14cca27a8363c7e7e33420ac",
"address": "miyeNeEJ6z8NGi5vHHkbpmSrpP9HQyyfTD",
"scriptPubKey": "76a91403dd6e331d01032e18b6a029d8ac4b502c614e9988ac",
"pubkey": "2103ee482fd4df44bf0b64120580ac098e8c1dc0e6803f2957e74d33c79d75a8dbf6ac",
"address": "mfsPatTrjni8z6wbdzktifXVD3yZVTZUye",
"hdPath": "m/44'/0'/0'/0/0",
"transactions": [
{
"id": "d1df19b6368eb543d6f6ba83f656f47c5ba98e9d432d05eedeef1932ad991748",
"amount": 5000000000,
"index": 0,
"blockHeight": 1,
"blockHash": "0062cc5614b1c3ac4b18cd127d07734fd0dc8a8bf6f0a1f37115bff2be1d45f0",
"creationTime": "1532979635",
"merkleProof": "0100000001481799ad3219efdeee052d439d8ea95b7cf456f683baf6d643b58e36b619dfd10101",
"scriptPubKey": "76a91425f4a612679294e2d0948c385a06fd6279d6694888ac",
"isPropagated": true
},
{
"id": "46631a325d25f57a49b032e4d0acca164eb481f1085e3ae6d423bd93f684dd0e",
"amount": 5000000000,
"index": 0,
"blockHeight": 2,
"blockHash": "6900103ba5de76d42bcd4e8e6c81a1885b8228261295bc12814940eab8a6fbdd",
"creationTime": "1532979636",
"merkleProof": "01000000010edd84f693bd23d4e63a5e08f181b44e16caacd0e432b0497af5255d321a63460101",
"scriptPubKey": "76a91425f4a612679294e2d0948c385a06fd6279d6694888ac",
"isPropagated": true
},
{
"id": "1fd89b7d76b1f563df32a2635e636e8212f705c7c9fced3b88acd2f2bb941321",
"amount": 5000000000,
"index": 0,
"blockHeight": 3,
"blockHash": "693ad39b4344770574e549de4f93e206cf6a74d6de975b2e43af7df87892c3fd",
"creationTime": "1532979636",
"merkleProof": "0100000001211394bbf2d2ac883bedfcc9c705f712826e635e63a232df63f5b1767d9bd81f0101",
"scriptPubKey": "76a91425f4a612679294e2d0948c385a06fd6279d6694888ac",
"isPropagated": true
}
]
"transactions": []
},
{
"index": 1,
"scriptPubKey": "76a9140cde018a77c780ecee63305badd92e2c2383c8ea88ac",
"pubkey": "2102707ecc89e445f95bf4fc8dd8c6b4395775bc3a820c1008043a156dbc2912346eac",
"address": "mggzMc2BWZHdHoybv7o1Kbt4PW8nveEfdq",
"scriptPubKey": "76a914a398d5fa5620f996333795574e628acc1f3ea3f888ac",
"pubkey": "21029b0acca169637c353e3444efb632688118ed8b3f1b1a697e88c0fda96442d655ac",
"address": "mvRyXYUX8LruuwX4pwzKKpVgTxyUbB3vmd",
"hdPath": "m/44'/0'/0'/0/1",
"transactions": []
},
{
"index": 2,
"scriptPubKey": "76a914aaf163edac0c0084c83abdde1e5306d08b08089f88ac",
"pubkey": "2102d10aa69b6a5ce905f910a60ab18b55eb7802f69305dc95d593408cc1ef0cfce8ac",
"address": "mw6pLm4JvgKZPnaKX3PUFK46kjSGJQeneu",
"scriptPubKey": "76a914b76d48624ca0e27f3485d1dab3acbad12496dc6388ac",
"pubkey": "2103849559f09f89ea5d995c722a603f3eaf346e15970b7de86ebe8133c62cfcd8e5ac",
"address": "mxEpsFtiRv3Mh5DMjjN9occhs47YzjtRSt",
"hdPath": "m/44'/0'/0'/0/2",
"transactions": []
},
{
"index": 3,
"scriptPubKey": "76a914eacf310592167d2246f37bb61940295c5e62078488ac",
"pubkey": "2103504f1fc96eaacdf965b22c00d9cbdb6f64c7157646ec3c2ffbd2940428aef1e0ac",
"address": "n2vWcroi31AJpPsAdUoDcxEXcAuhZvXBPb",
"scriptPubKey": "76a914fb438b60dcfaf9d50bf026e4000ff7d852e2c6d888ac",
"pubkey": "2102f1d4dee1ad49dd858cd1d7e82bb580960e7b707838e88cc671b0fdfb6f366bfeac",
"address": "n4RWpGqdQQeoQLbMnwzfdvephrMMAZUHAT",
"hdPath": "m/44'/0'/0'/0/3",
"transactions": []
},
{
"index": 4,
"scriptPubKey": "76a914bcdfcfca589542266db0668ec8157a8d718acd9e88ac",
"pubkey": "210205fdfc33da699fa2a69066c2a9613909d5cb00f7068be5ac8aa31ce506321fb4ac",
"address": "mxjdSptCAgiz2LBDrqC1EGHoKWDQAoQoUs",
"scriptPubKey": "76a914e0edb5512dab3d321c30f2a8f0ac11afeab50e7988ac",
"pubkey": "2103adedba139b6aed854936ff599e84be98d8790853eaa1f24bda5db2a77adfeac7ac",
"address": "n22GRHSEVoQ8SvhENxWd99UtHoQyiLv8TG",
"hdPath": "m/44'/0'/0'/0/4",
"transactions": []
},
{
"index": 5,
"scriptPubKey": "76a91482ba28c370d42037774e2f468ff89beb1ba12e8088ac",
"pubkey": "21038ffc280ad6d68bf4ad9c2086ba0f348755e08b5f8a8a3135c7f670dea5168d07ac",
"address": "msSB9ZZSxWJ6CWHAq2e93gywz6CwkWGW2U",
"scriptPubKey": "76a914757edbc825609755173b578933a994adbf94eb0488ac",
"pubkey": "2103a1d8476c8f47494e5992100992b2d8c17166f611b1b598394cce1cf2e635fcd9ac",
"address": "mrEDKnMowHX1onHq96RdEQy7KV4pf12hmA",
"hdPath": "m/44'/0'/0'/0/5",
"transactions": []
},
{
"index": 6,
"scriptPubKey": "76a9141e8d2d5b1595ce253d3fa7067806d9097fc2a6d388ac",
"pubkey": "210368abb6d5400cbdf53de339d8a987e6b6a793e101e99277f75f3b4af6d1ab144fac",
"address": "miJVgyFr2CkK2pwsRFCWyStifyLCaH6D2D",
"scriptPubKey": "76a914d7770b7fc085ff4df8deb463318f4427733d97eb88ac",
"pubkey": "2102bbf37351aa4a1fe858a808c4be85137885d437584a0c3eb964b4c8e79c2e6458ac",
"address": "n1AEBgbUJMCQYSRkkvHzfrz3m6NFS337VZ",
"hdPath": "m/44'/0'/0'/0/6",
"transactions": []
},
{
"index": 7,
"scriptPubKey": "76a914f8f6758de65e8a62a6be3be7a6526aa8525ade6d88ac",
"pubkey": "21021f16f40905b2d7003674d2e1e787d97bbe032fc8ff374a59cf8559218af13d1fac",
"address": "n4DM7uv5A6kmRfV5pJabFtXFpENX4n45KB",
"scriptPubKey": "76a914926a6a6d65b8c35cda2b53153e0098fe630c3e0a88ac",
"pubkey": "21021d843f1642a035369e74e3f6c9aa8575a70caac067d1058db5233a8ad27fb028ac",
"address": "mts8RxPzxs6kChWjEC1FwnCsh5t1N91tZa",
"hdPath": "m/44'/0'/0'/0/7",
"transactions": []
},
{
"index": 8,
"scriptPubKey": "76a914470db1acada1bdedf2118e77ffaae8814adf248e88ac",
"pubkey": "2102e8a96e536b52a79be2aef7e799ba120a2dd0ce525c18183004de5f5302f65dddac",
"address": "mmzeg9oj7pGVm3GhD5cNqNNWw7i4dy5Pqj",
"scriptPubKey": "76a914a8b378aaf2bd69c336bb9ae5725b0b5888f942a888ac",
"pubkey": "2102fa069924c35411d2b7b25e4805e6931d366ed833454396ab809b7c401c94bbebac",
"address": "mvtxpApZwFXBCzAg8zwZZ5BU5optX7j42w",
"hdPath": "m/44'/0'/0'/0/8",
"transactions": []
},
{
"index": 9,
"scriptPubKey": "76a914d40883f3cd316b3d3246c7c0e25789db529919f588ac",
"pubkey": "210392155c1b7e7e1040ef9257116173e852c1788fd1aa0791a0bafbc879dc6f04acac",
"address": "mzr5kPHr7ZkttvdiB9so5xjoeQJy3NyyTi",
"scriptPubKey": "76a914f5d9c34b90f385d2477e32f04562c9e7cc05484f88ac",
"pubkey": "21021e8087aa3fac7e754d1d6a91817ca135ed945feb5ebd21e401e4e0625deb7bd0ac",
"address": "n3vtiUuuV1zeH1b4Znjv4aezHvRuf8VJ3b",
"hdPath": "m/44'/0'/0'/0/9",
"transactions": []
},
{
"index": 10,
"scriptPubKey": "76a914a219927c668f1cecc4b9d61d9eaf9e250f6b857288ac",
"pubkey": "2102e9397e54c9e8dc3eb317d2b532429528bf694406edfbbb7618a84c7ddb4a57f1ac",
"address": "mvJ4PvFRewnjV7nT7BNSL9QZUFtRY61N2N",
"scriptPubKey": "76a914da15561995457cc2bc4ab2d0b32ee8a225b318a688ac",
"pubkey": "2102f0ad3cfab1aa2b0ac0cf553d0a1ff9a690e6ace3f81cd8d7c714ecdfbb6f37abac",
"address": "n1Q5AM5uUCfDQMTLP6BT4EzcX3GyYP82Ku",
"hdPath": "m/44'/0'/0'/0/10",
"transactions": []
},
{
"index": 11,
"scriptPubKey": "76a9145927f60729ef253189355ea3536d50eabb1a82bc88ac",
"pubkey": "2103875477b8ff616800f0f4f05a1241b5a9f83e3368862b606211d0955a915cf36dac",
"address": "moeNJfmEHreS5Sjs496WciTgaGLgWsDqMZ",
"scriptPubKey": "76a91402ef489e65301b1abd7cc601611800348bf221e588ac",
"pubkey": "2102d077ed198883e5f9731a685e0dfaa6a1ab49f388bb11b85a7865c1254e30324cac",
"address": "mfnUJA8sLdQYzabxnmJ359Yy5K331voF2J",
"hdPath": "m/44'/0'/0'/0/11",
"transactions": []
},
{
"index": 12,
"scriptPubKey": "76a9142723cc606ace4384ad0eaf1cba60eb907700caf888ac",
"pubkey": "210237d6cbd303a0139fc0fe1abda109474f1da1e448f5933b7e478403e5825de4c4ac",
"address": "mj5uXr9HdGgFi4CUNgaRpxR2FfQEVaTHEB",
"scriptPubKey": "76a914e988ab0b78abf035f0ec99545fe2fdca1735a82c88ac",
"pubkey": "2102fa075da0794d4b877dcaf564e73b7ee9b23757d740ec0a5f16f76919a0b081fbac",
"address": "n2omTctdbsmusv4ofdgG3zGPUt8akaKfr1",
"hdPath": "m/44'/0'/0'/0/12",
"transactions": []
},
{
"index": 13,
"scriptPubKey": "76a9149d0abf4576fb4273c12ce991b492587977f57d5588ac",
"pubkey": "2103f3659a4dccd488a13623cbf59000e215b4c22d596c5fdf9ef4aee36f865c0763ac",
"address": "muqKFtxqq1MDA1VywQKFYvTgZU8akRArKM",
"scriptPubKey": "76a914cb4b7b162000adae7d582b4b1c75e9cd97fb1ac088ac",
"pubkey": "2102822d8d6ef8b872cc7e5836a702269d0489282cabf0d1fb3788c6ba63d7ebf8c1ac",
"address": "mz3stVbwuZq5LY6RP4P1pLVjdnV6s55TNL",
"hdPath": "m/44'/0'/0'/0/13",
"transactions": []
},
{
"index": 14,
"scriptPubKey": "76a914f99a6f99f871537ae4b9dc9180eb3eb15ee7bdd888ac",
"pubkey": "2102c567f4e6a09ff3f53c1728558c97d3f1d1b954e8d5a580ff024bc1f98f140e51ac",
"address": "n4GjZDZ4ErLUZCkZ1hLG9V8s8No1KtKw9S",
"scriptPubKey": "76a914fd2c2b31cb89e4d12ea536fc7b05821c27b97c6c88ac",
"pubkey": "2103458c989c86a6423b74d796d7e442995feea2ee929bd455ac843e9532b61fbdf5ac",
"address": "n4bcAV32p7VmaDjnQbxX18V2rbZwPezmFV",
"hdPath": "m/44'/0'/0'/0/14",
"transactions": []
},
{
"index": 15,
"scriptPubKey": "76a9143079321984b2a19402a96ffdaf83fede1f9a0e3c88ac",
"pubkey": "2103d8852dbc2ebb23f612e502e6c36dc85b88d32ec3b39b9644f055ea732d418acfac",
"address": "mjwFv5zVxbq649Ytcaan1DGAzAmonFBZM2",
"scriptPubKey": "76a91443f6fec3727c09327d954da929af84a42fb65dfb88ac",
"pubkey": "2102595795910ae2e04c158fa29f3d40f94ecea3cf5ddddc1331388836840b2d9d30ac",
"address": "mmiKTS1DzeQPiimjjspfYobk5NATVahDta",
"hdPath": "m/44'/0'/0'/0/15",
"transactions": []
},
{
"index": 16,
"scriptPubKey": "76a9147f91a151a90fae49edeb8bf6ad65d3490e97109588ac",
"pubkey": "21028dde21d5c4d7b0a8a6fa77c5b8578493378bb00ea2a8c009e720c450b46d8354ac",
"address": "ms9UZycPv2rrUHC6LS8zUzB9JPkxvh6BZ2",
"scriptPubKey": "76a9145f0d0083569c10b25c2c3d6f8fc7bd448e7909fd88ac",
"pubkey": "21034595db46ec19f9f4032c728a9e01aa49df122db2fd244770c08708bb96aae94aac",
"address": "mpBY4fzCFC2jkcZZJBgmLtZEG8gRmavURr",
"hdPath": "m/44'/0'/0'/0/16",
"transactions": []
},
{
"index": 17,
"scriptPubKey": "76a914a16df9685cf3ae209daa7da7c6a6792d37cd727c88ac",
"pubkey": "2103cde67c89a963e52ca8057994014e7fde2759280de2c91f6a77e17733ef0ae322ac",
"address": "mvEWq5o4zbKviN58HyExyeNP4TJ3v5pkKm",
"scriptPubKey": "76a91484d9ba6ddb5e357c4a94146214fea6e8a949910588ac",
"pubkey": "21027e47ed99e61405b2a68310aed3c856e5aac1cc29573dcb1defde710078354265ac",
"address": "msdQKQ65mb9Mz86AhiB5UuA9TcYCzugBiu",
"hdPath": "m/44'/0'/0'/0/17",
"transactions": []
},
{
"index": 18,
"scriptPubKey": "76a914a5d60185f773a106ee36c1fda77755d31c45516b88ac",
"pubkey": "21032ae5fa15dd3c945509abe655847b9805a4f25369bdc0f5513c78589ab1ce131cac",
"address": "mvdpA6mAmsDrexXbUx1UaHR11TfYrREBsr",
"scriptPubKey": "76a9147ef89141c476fda6325502b27fbe58db7ae3e21b88ac",
"pubkey": "21029d89b635317ca7cf6aedc507fee9f3f16bcb627b144cadc84c743efd207c5adaac",
"address": "ms6KCzSBpuTNbEZA7UkZQp1oCBTZ4Kfwzd",
"hdPath": "m/44'/0'/0'/0/18",
"transactions": []
},
{
"index": 19,
"scriptPubKey": "76a914a45239a1eda5911a6facfff99846aa23ed61923b88ac",
"pubkey": "210369c72066b1624b30101c0e1ec31ae82c926efce2be23af494715d1b3659c71c5ac",
"address": "mvVocch93W3SVPGVUDvZGGEsCvF4fgJNcK",
"scriptPubKey": "76a914fbffc59a6eb325c80c91a75588212fbdcd432f4888ac",
"pubkey": "210322c3a4dc8d133f10ab8626f05a58ccca81ffce3b589cc2683a15ad28e8f8d776ac",
"address": "n4VQJYcDEvbecG5PhXm8VZG9BeUjuV7FQQ",
"hdPath": "m/44'/0'/0'/0/19",
"transactions": []
},
{
"index": 20,
"scriptPubKey": "76a914c8b92b9d8d6edba62382fd3f84680c7ab9711ae588ac",
"pubkey": "21034eb1316f57c8b395060b97bdc6e711aed7736f37a9f3fc1c55ebed5f2eb6ad98ac",
"address": "mypHGHNosVts6rocLBJ6ZGJSrHnaotgzpZ",
"hdPath": "m/44'/0'/0'/0/20",
"transactions": []
}
],
"internalAddresses": [
{
"index": 0,
"scriptPubKey": "76a914f9b47de89bba2c033a9f073456b18c3b94455e8688ac",
"pubkey": "21022942e1d7d62037caebe974545b3b966f78378233d0cd91127f4173c710194a12ac",
"address": "n4HGmcT9i1sGiSohmhXZWMUyBGz42Feoo6",
"scriptPubKey": "76a9143d3d4e06b5e481f19b5aefb991d44c36aa0d48e588ac",
"pubkey": "21032c2c7cb611e07ea5a929c8aeab96ebac85019050768aec1eca0fc74e58323c2fac",
"address": "mm6kxHcEg5HAEhCjSrgMkcj2nDooaH4VJc",
"hdPath": "m/44'/0'/0'/1/0",
"transactions": []
},
{
"index": 1,
"scriptPubKey": "76a9141ca068e68b4f1987771890d3a58e1052ef15f96188ac",
"pubkey": "2102f094a3ea1609f322c0c2ab2f990a4c907498841a6aa2235ce6c9ed7a815725e1ac",
"address": "mi8KNtehhTQ1jAyKpWTsCDFzenAyUaZDdK",
"scriptPubKey": "76a9143ab1240e8e67b1128c96b948cae9db709f00b4aa88ac",
"pubkey": "210243fa4725382fe161751cc7e5dd1f9264c31af426568e2faa778295da858d1e0dac",
"address": "mksHh9BzdU3DJVybjLqaVC3NZoCD4qozT8",
"hdPath": "m/44'/0'/0'/1/1",
"transactions": []
},
{
"index": 2,
"scriptPubKey": "76a9145b504dc09e162440869bda631dfcb53b6402a63488ac",
"pubkey": "2102f26c2c04136980245c0238afa9b1959727a638c5ee0e11f6f6cf1843c6acc552ac",
"address": "moqmz7PJxXZBp8rQ3kBvJTYRZqZZi3XAaC",
"scriptPubKey": "76a914a744ea1a035a6000c15bdf40b5270dfae6c0f68588ac",
"pubkey": "21023ea3c2609148404abdf74c0bf20195e93f8b041b3d6c0350394048a535f1dc87ac",
"address": "mvmPhMGcfpRGGYNX7D5svX3fuiMw6XfRZJ",
"hdPath": "m/44'/0'/0'/1/2",
"transactions": []
},
{
"index": 3,
"scriptPubKey": "76a9149e57eaee9d3c9d81edbc13a2d43315dcf45a83e088ac",
"pubkey": "21034d5621fb2b92220988e532c0bf297a25244fb34e50b76b8840e6f25c037db47eac",
"address": "muxCNzWY7skwBpufCrGi2tNtxzWxGKt5H9",
"scriptPubKey": "76a91421e409d68249e0948af1368ab8275a63bd774a4588ac",
"pubkey": "2102677b8e4e2362846af60b1751815ee6658e4fe75c1d4b27e3e76947f42dd37e8eac",
"address": "mic9mmkAqAJnq6QhZTYuVFEqqoZwCT5Wqd",
"hdPath": "m/44'/0'/0'/1/3",
"transactions": []
},
{
"index": 4,
"scriptPubKey": "76a914a023a887a8fb09d3da69f2a6bc3f93517bedc90588ac",
"pubkey": "2102d804ab3abf257aeef32fbf075395c191602cec53b1aa91afeecaa2c6792b6f03ac",
"address": "mv7h8L7i9Ebfp3iU1tpYTqZzhptaDVoKAe",
"scriptPubKey": "76a91481175901db04cf3aa528ce0549eddc63d57c71aa88ac",
"pubkey": "21032c0ac7f6cd452a680c804493c17506e854d3b42e38b610f33aedf574b16a5e9cac",
"address": "msHXS2SjdQL4e2kNnoKfSdEutCk9R61K8Z",
"hdPath": "m/44'/0'/0'/1/4",
"transactions": []
},
{
"index": 5,
"scriptPubKey": "76a914b8756820961ced3a3c71a09340fe7fb156c6f5be88ac",
"pubkey": "2103de7a7e43239d89d235333577849e7a75a0cfe6e256998c190b7ad91a9b5aed8fac",
"address": "mxLHGv14SUidAQavsPh76uqVGHNvNw1ago",
"scriptPubKey": "76a91498137bf82a64cff15231f26c4e15a9ec25e349fd88ac",
"pubkey": "2102ebf7252e1a69c3dfd017363d909c54e989afc8a8dd9be73687660288fc5d7ee7ac",
"address": "muP4M1599PfTvGYhT38yQ5s1N5F1EfFGEu",
"hdPath": "m/44'/0'/0'/1/5",
"transactions": []
},
{
"index": 6,
"scriptPubKey": "76a914ad5050eaebee426d56ec436595d54cdd6173493488ac",
"pubkey": "2103d5d55e2c5f27862be11054c549ececc7226cf8f9e50d8275a76b46c2cf698bf8ac",
"address": "mwKMQhZJh8QZq57bkaoHGesee8CddkaAko",
"scriptPubKey": "76a914610b4c243f583702f6fd43f9defaf1948b18f0d488ac",
"pubkey": "2102fd84cb952db756b670f4ecbbc777d9dfc90baeccf8f6d75baa2877df61024a58ac",
"address": "mpN5Ncx5MRB8ophYScZN88N7xyoSeLQapp",
"hdPath": "m/44'/0'/0'/1/6",
"transactions": []
},
{
"index": 7,
"scriptPubKey": "76a91492e75c5f24db5f5660778a1f1d7e36792a5d2ec888ac",
"pubkey": "210327ddf86c7e539405e3b9b265b68620dcc7fc0dfd1ba6dbdb2cf818278cb7bb6aac",
"address": "mtui7HxzrhKBrHVS6GebQBjc3nopRSvfzD",
"scriptPubKey": "76a9146c52e407aa50f78b38a45426f04668fb8281cd5f88ac",
"pubkey": "2102b8dd3cd2db73703148e397f7bfc125d0283d84c9f6f56ebf64b8da0672c9ebb2ac",
"address": "mqPia7zjMcsVrWCVRHuysuF4uJ6Bfyv6ub",
"hdPath": "m/44'/0'/0'/1/7",
"transactions": []
},
{
"index": 8,
"scriptPubKey": "76a9146e238b5f70f17f10666fdbd2751a29c39c26ba2688ac",
"pubkey": "2102f15326490abc14a05fc00f8ae36c46c067a542232ab8eb289ae216144da9fe65ac",
"address": "mqZKCppcvUkJhunVsUPtXZXsxmZAJ2P3QN",
"scriptPubKey": "76a9149a85dee4ef09dd611e9bd04301a4d6d38bb6c76588ac",
"pubkey": "210360fd7b3f6f19f1c409b20d1dc47476e4b94864890fe84d8a92b67b2995dcad96ac",
"address": "mubzj6Q2vMAzBhMznJZcnvFqzocJAX2yXR",
"hdPath": "m/44'/0'/0'/1/8",
"transactions": []
},
{
"index": 9,
"scriptPubKey": "76a914fc1e22898b807ab6f08467181c5ac05227183cb988ac",
"pubkey": "2103cb9f0c0813e529b30b28abbdfcb6a3596dff488471f35264be05f66feb8dbff6ac",
"address": "n4W2gCszHmeuPYNN25FTLohim7vnZJ5gea",
"scriptPubKey": "76a914bea4aa6f253d0845bfb3740a56b63228644a963e88ac",
"pubkey": "2103526315190975deb5a0059a23ca4b501d9b649cbedf6ab096b0a37b6879eb1851ac",
"address": "mxtywgMLLL7Ccegu381vTNFBjDSYuvGRy4",
"hdPath": "m/44'/0'/0'/1/9",
"transactions": []
},
{
"index": 10,
"scriptPubKey": "76a914ce006df0a9de66d9a77ec23c7cc68e230c5d7e4a88ac",
"pubkey": "210229c73e908a8f13d90f6a5e8ecc9fe7f73729813a2229acff5a653f0a8974ef22ac",
"address": "mzJC1Qjd8KsqM6FuqhfUcrSaGPe2hKSiNK",
"scriptPubKey": "76a914afb2e7255b96287a563bc4c223ea6859e491148c88ac",
"pubkey": "21030fb0f2255dadb5d9a120739f2fc8aeff549385493684cdf8d1bad9e498e44468ac",
"address": "mwXxs1vUgjM5rCtFxpjxSFGHtUvwATxTzR",
"hdPath": "m/44'/0'/0'/1/10",
"transactions": []
},
{
"index": 11,
"scriptPubKey": "76a914fe23510b7cfbd174adf35b881119b271f2658f7988ac",
"pubkey": "2103f57a6045bccdbbd47fa5f73370434c69ef94b940affcc779682834961551e392ac",
"address": "n4giEcoP3rcvbXwoZM7B1LpVyFfzBQjm2V",
"scriptPubKey": "76a9143cecf04503740a875ccf093b9a046c95619d866188ac",
"pubkey": "2102f94e97a1bb5389fe6be8382738468da2d56d95929f54f1c7451929a8822a9130ac",
"address": "mm56gLrXSd4mGkgFw9oBU54ZRqAtGFxFRo",
"hdPath": "m/44'/0'/0'/1/11",
"transactions": []
},
{
"index": 12,
"scriptPubKey": "76a914327d0acd72a3800c89dccedf6a448ba268d937b488ac",
"pubkey": "21021f8aad7ee9f8245d9911245c03059f50657c79a8e42ff5761d7eee6c5d03a746ac",
"address": "mk7usjH4UdBBJ87HBhrcwY61hxTiSKXa8u",
"scriptPubKey": "76a914576f0d1d68ad34e68b16ac710256b307761856d088ac",
"pubkey": "2102bed8dc676748dee38bac749ff481d75d7b54fa804152d40bf0261c65a998a859ac",
"address": "moVG7ibbcooD98kUQ1DS7MYYijzF5VqxfH",
"hdPath": "m/44'/0'/0'/1/12",
"transactions": []
},
{
"index": 13,
"scriptPubKey": "76a9148c5a0458a5685cb34b01170e665519d1ea18545a88ac",
"pubkey": "21034f43b27946e081c7ad8cf0a4cff62ce9dbd5b305dd67cfd2ae04670cbddc683cac",
"address": "mtK4jQ8Hay8NHmYp7c2mCECyyeub4WxMPb",
"scriptPubKey": "76a914a7b338b7e857aa28a56d9c3243895b67666117ed88ac",
"pubkey": "210268891f0d4ac452d15354d5301e04eca6be44281117b109393515c955590e0646ac",
"address": "mvofqd1mQmkrcVS8TLoUrEDhv8d8woYFrc",
"hdPath": "m/44'/0'/0'/1/13",
"transactions": []
},
{
"index": 14,
"scriptPubKey": "76a91467ab335e50033a03b910369336d257b2422c4f0a88ac",
"pubkey": "2103b0c169f9accf3c27b01b19db9b2a6a533592652cbbee99ff6e942b970e50a99cac",
"address": "mpy6z3SED18V2jcjyr9XKZzEBQ86pSEvuf",
"scriptPubKey": "76a914a215df7fc3819fa54751b57335c47942d2665cd488ac",
"pubkey": "2102ec971fecd729d9d613f24b1ebc6fecefbcbc4ea75ec7c04b0f727d9f471a9ea6ac",
"address": "mvHyxtwCaHXKHG8es9gfR8CA8mrmYTBm4u",
"hdPath": "m/44'/0'/0'/1/14",
"transactions": []
},
{
"index": 15,
"scriptPubKey": "76a91477bec47a7ae286a1e86a22b50ef2f4df6221d67388ac",
"pubkey": "21039e29b554bc9fb351ba52be52b1d0c14b23e9d9ad6dca7b2398d6db615d7400c2ac",
"address": "mrS7Ee4AYoVp8qybeAQj6Y7nJMrnf3Hpsf",
"scriptPubKey": "76a914a586c28ed7c95eef9b837ce3caa69521784515e288ac",
"pubkey": "2103cbc64eba91c5acaf0058d3ea2595e03c0d2bff1105fff6b1508c078528f6fcacac",
"address": "mvcBDzdZ8y1mfNiJeqFB6CXA3KCgFydi3p",
"hdPath": "m/44'/0'/0'/1/15",
"transactions": []
},
{
"index": 16,
"scriptPubKey": "76a9143deac5ad6a4005edbffecc68f42bae463b56cac888ac",
"pubkey": "21036124cc9a6f6b4b6bac5f4538b259fcc96849312befd352a66b30201bdb3b52b3ac",
"address": "mmALm1gQr6X42YZZMiJe9UbXux74wfwaA2",
"scriptPubKey": "76a914ebd8129901bdef689d85d155c05421a510bfdde088ac",
"pubkey": "2102bf7f56b3ef7dd830a7e10afcf79aa103d542caaf66f793453186573d7e04d5afac",
"address": "n31yw8CPfgUkoGy2Zcy4KovWPZrUHEQe9Y",
"hdPath": "m/44'/0'/0'/1/16",
"transactions": []
},
{
"index": 17,
"scriptPubKey": "76a9146feecf04bd66d80cb54cd1a8e5b9ec251131ecdc88ac",
"pubkey": "210398d1797388b35a7b0ab913f67fde62665557cbf47601495055b4f61627c444ecac",
"address": "mqioP4gF5tvR83TRmnfYmjxGA53dtFL1je",
"scriptPubKey": "76a914a24be8defcd6c1f53befcac819fc78017e8ab56288ac",
"pubkey": "21035360e14f876ea2659f4f8cffaef2b2361cdf962e75ada73dc8e011166bd7b58aac",
"address": "mvK6hReD9JZedZRfD9bvgNkRsZ7L1ZN7Fd",
"hdPath": "m/44'/0'/0'/1/17",
"transactions": []
},
{
"index": 18,
"scriptPubKey": "76a9146e50411aa4dc289103ad04a5403ce96661e095da88ac",
"pubkey": "2103e225dc7c993b663585dfd2777c5fe9d3d35b993e41e74f924b021b6c6c961444ac",
"address": "mqaEmKg5TLQLBkvaEMoGLBSNYd7WyTLRvu",
"scriptPubKey": "76a9143d403131a42428a9a7eeca495469b7f8a060e00388ac",
"pubkey": "21025e712e5b875f9b11e02a34bc3b34f93628fc3e1ec8b57ee97ab8ac1652217f8cac",
"address": "mm6pQuU2gcbovab55BdStiQtDUzJ86noYk",
"hdPath": "m/44'/0'/0'/1/18",
"transactions": []
},
{
"index": 19,
"scriptPubKey": "76a914a6985dd029c01e5adcd7dee00bb653478757961d88ac",
"pubkey": "21022d24b93a0c60896600f0a49f214fb004b316fd3ce7d99a76804f197872302b24ac",
"address": "mvhpzWEs9MB6Pq4rF5CwFpKnaVV9hHE81L",
"scriptPubKey": "76a9145f78cbafcbc23fd8f53d621b2accab0fd5fa09a388ac",
"pubkey": "210292a87bdb1fadd9b0f51cb1d9ac8cdb663339c377109e6b46018f33cc5e275521ac",
"address": "mpDmCJkeWmAzq1xtnHWDWSPZ4Ha8yWDonx",
"hdPath": "m/44'/0'/0'/1/19",
"transactions": []
}
......
......@@ -2,11 +2,11 @@ regtest=1
rest=1
server=1
txindex=1
rpcuser=42852640b1aa0c94ddb6e22581fa4a672746df12
rpcpassword=42852640b1aa0c94ddb6e22581fa4a672746df12
port=12731
rpcport=12906
apiport=11375
rpcuser=e558d157acee5127662e743ca6d4961358bc8558
rpcpassword=e558d157acee5127662e743ca6d4961358bc8558
port=11419
rpcport=10151
apiport=11641
printtoconsole=1
keypool=10
agentprefix=node12731
agentprefix=node11419
__cookie__:f180e01485a65770cdd27b6a294693437ca63ea018034403cd3673ebd1b4d110
\ No newline at end of file
__cookie__:f2ff8f2ce53715a9d443201bf00e34ddf1694afcebe68bb7a402ff2c4a851d60
\ No newline at end of file
[2018-07-30 19:40:25.1960 1] INFO: Stratis.Bitcoin.FullNode.Initialize Full node initialized on RegTest
[2018-07-30 19:40:25.1960 1] INFO: Stratis.Bitcoin.FullNode.Start Starting node...
[2018-07-30 19:40:25.6165 1] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading finalized block height
[2018-07-30 19:40:25.6165 6] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading chain
[2018-07-30 19:40:25.6325 6] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Chain loaded at height 0
[2018-07-30 19:40:25.6325 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext FlushChain starting
[2018-07-30 19:40:25.6325 10] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Periodic peer flush... starting
[2018-07-30 19:40:26.5956 10] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Consensus Loop starting
[2018-07-30 19:40:26.6009 1] INFO: Stratis.Bitcoin.Features.MemoryPool.MempoolManager+<LoadPoolAsync>d__25.MoveNext Loading Memory Pool...
[2018-07-30 19:40:26.6009 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext MemoryPool.RelayWorker starting
[2018-07-30 19:40:26.6009 13] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext wallet persist job starting
[2018-07-30 19:40:26.6009 1] INFO: Stratis.Bitcoin.Features.Wallet.WalletSyncManager.Start WalletSyncManager initialized. Wallet at block 0.
[2018-07-30 19:40:26.6214 1] INFO: Stratis.Bitcoin.Features.RPC.RPCFeature.Initialize RPC Server listening on:
http://[::1]:12906/
http://127.0.0.1:12906/
[2018-07-30 19:40:26.6214 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext DiscoverPeersAsync starting
[2018-07-30 19:40:26.6214 12] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorAddNode.ConnectAsync starting
[2018-07-30 19:40:26.6214 12] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorDiscovery.ConnectAsync starting
[2018-07-30 19:40:26.6324 1] INFO: Stratis.Bitcoin.Connection.ConnectionManager.StartNodeServer Node listening on:
0.0.0.0:12731
[2018-07-30 19:40:26.6324 13] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeriodicLog starting
[2018-07-30 19:40:30.1815 13] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/30/2018 19:40:30 agent node10346-StratisBitcoin:1.1.2
Headers.Height: 0 Headers.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
BlockStore.Height: 0 BlockStore.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Consensus.Height: 0 Consensus.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Wallet.Height: No Wallet
======BlockStore======
Pending Blocks: 0
Batch Size: 0 kb / 5000 kb
=======Mempool=======
MempoolSize: 0 DynamicSize: 0 kb OrphanSize: 0
======Connection======
[2018-07-30 19:40:30.8885 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext WalletManager.DownloadChain starting
[2018-07-30 19:40:31.7441 17] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/30/2018 19:40:31 agent node12731-StratisBitcoin:1.1.2
Headers.Height: 0 Headers.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
BlockStore.Height: 0 BlockStore.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Consensus.Height: 0 Consensus.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Wallet.Height: No Wallet
======BlockStore======
Pending Blocks: 0
Batch Size: 0 kb / 5000 kb
=======Mempool=======
MempoolSize: 0 DynamicSize: 0 kb OrphanSize: 0
======Connection======
[2018-07-30 19:40:33.9427 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext WalletManager.DownloadChain starting
[2018-07-30 19:40:35.1949 7] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/30/2018 19:40:35 agent node10346-StratisBitcoin:1.1.2
[2018-07-31 19:27:17.8281 1] INFO: Stratis.Bitcoin.FullNode.Initialize Full node initialized on RegTest
[2018-07-31 19:27:17.8281 1] INFO: Stratis.Bitcoin.FullNode.Start Starting node...
[2018-07-31 19:27:18.1563 1] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading finalized block height
[2018-07-31 19:27:18.1563 5] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading chain
[2018-07-31 19:27:18.1741 5] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Chain loaded at height 0
[2018-07-31 19:27:18.1741 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext FlushChain starting
[2018-07-31 19:27:18.1741 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Periodic peer flush... starting
[2018-07-31 19:27:19.2660 11] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Consensus Loop starting
[2018-07-31 19:27:19.2660 1] INFO: Stratis.Bitcoin.Features.MemoryPool.MempoolManager+<LoadPoolAsync>d__25.MoveNext Loading Memory Pool...
[2018-07-31 19:27:19.2841 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext MemoryPool.RelayWorker starting
[2018-07-31 19:27:19.2841 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext wallet persist job starting
[2018-07-31 19:27:19.2841 1] INFO: Stratis.Bitcoin.Features.Wallet.WalletSyncManager.Start WalletSyncManager initialized. Wallet at block 0.
[2018-07-31 19:27:19.3000 1] INFO: Stratis.Bitcoin.Features.RPC.RPCFeature.Initialize RPC Server listening on:
http://[::1]:10151/
http://127.0.0.1:10151/
[2018-07-31 19:27:19.3000 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext DiscoverPeersAsync starting
[2018-07-31 19:27:19.3000 17] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorAddNode.ConnectAsync starting
[2018-07-31 19:27:19.3120 17] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorDiscovery.ConnectAsync starting
[2018-07-31 19:27:19.3120 1] INFO: Stratis.Bitcoin.Connection.ConnectionManager.StartNodeServer Node listening on:
0.0.0.0:11419
[2018-07-31 19:27:19.3120 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeriodicLog starting
[2018-07-31 19:27:22.7696 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext WalletManager.DownloadChain starting
[2018-07-31 19:27:23.7812 5] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/31/2018 19:27:23 agent node12204-StratisBitcoin:1.1.2
Headers.Height: 0 Headers.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
BlockStore.Height: 0 BlockStore.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Consensus.Height: 0 Consensus.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
......@@ -73,12 +40,11 @@ Wallet: mywallet, Confirmed balance: 0.00000000
======Connection======
[2018-07-30 19:40:35.9040 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext WalletManager.DownloadChain stopping
[2018-07-30 19:40:36.7576 5] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/30/2018 19:40:36 agent node12731-StratisBitcoin:1.1.2
[2018-07-31 19:27:25.2652 12] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/31/2018 19:27:25 agent node11419-StratisBitcoin:1.1.2
Headers.Height: 0 Headers.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
BlockStore.Height: 0 BlockStore.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Consensus.Height: 0 Consensus.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Wallet.Height: 0 Wallet.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Wallet.Height: No Wallet
======BlockStore======
Pending Blocks: 0
......@@ -87,9 +53,7 @@ Batch Size: 0 kb / 5000 kb
=======Mempool=======
MempoolSize: 0 DynamicSize: 0 kb OrphanSize: 0
======Wallets======
Wallet: mywallet, Confirmed balance: 0.00000000
======Connection======
[2018-07-31 19:27:26.0006 13] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext WalletManager.DownloadChain starting
{
"name": "mywallet",
"encryptedSeed": "6PYM9RHZd7rrQGHdcDgVBshGc1KdHN84yefSgrwxqhTjwLtyykgWzFDjGc",
"chainCode": "wdl/Do6+FvfczRpShz+xsst4ULBUputsGrJV12Ss0II=",
"encryptedSeed": "6PYKKxMYdFq4PEweejy8wFAtzQ3jDR1U4h5Acgd6BgkfHSRzUgrtnpgMoc",
"chainCode": "J80E/tUn+I8Sx4pVHJql6MBHaUFMM2vrMkMJTOSHnnA=",
"blockLocator": null,
"network": "RegTest",
"creationTime": "1532979632",
"creationTime": "1533065244",
"accountsRoot": [
{
"coinType": 0,
......@@ -13,166 +13,166 @@
"index": 0,
"name": "account 0",
"hdPath": "m/44'/0'/0'",
"extPubKey": "tpubDD9f5P1A9L64McMdcDbXyrfeSLHcNcdorS8jeAhccrk4r3e2XA4bSksJnL7JmktZBrnhg5eDRd3Wh2KarhnozLTcATQjjjqG3HvVjgf9bQS",
"creationTime": "1532979632",
"extPubKey": "tpubDCk5pEhib1H97GNV4PinWnfKuiZbQfD18Hv7t4pDjdWShcvSJ7eyjwdYxe8kP2zkMc5HBrcLRuqsfoytcUkTDjryJNWYbWnqnUcKEhCFos3",
"creationTime": "1533065244",
"externalAddresses": [
{
"index": 0,
"scriptPubKey": "76a914873cf3ea65d798793e10f72fea1bfa177a43dd4988ac",
"pubkey": "21020ca963ddc11f38d7ccdd838d00d3985c6a261eb984eab30d7ca9740b1d156e72ac",
"address": "msr2Y2SMooq93PhtnWCpEuf8Pe5HuoQfHu",
"scriptPubKey": "76a914257f788d240c6e74a59e899ebf4b3994e6f8cf8888ac",
"pubkey": "2102c960a420811dbf6921ad5766f5112c37e5179b542797fdb9412095ba14a46e25ac",
"address": "miwDzz79RY62tkCUwXDagp8mejzw3zi1cT",
"hdPath": "m/44'/0'/0'/0/0",
"transactions": []
},
{
"index": 1,
"scriptPubKey": "76a9143f5e6234863546b08ca692ed187255e11068969388ac",
"pubkey": "210245428abc1e20a184b5dd57be488f88be7baa011fc592711f7bfb3d5e0a1b3ec6ac",
"address": "mmJ1w2ZnJ3yqEHQNVnNXmEf5q28HvrP6uv",
"scriptPubKey": "76a91431a092335c828f85f3260d92e08aa97d1c81ce1f88ac",
"pubkey": "2102ae7bca036ee47027c652c00b8bcd6f7818d10e2b23afd8ee9a3dfe2ae2d36f09ac",
"address": "mk3Mm8SS11bkeaEhHjgqRE2GDyR4pLk8ME",
"hdPath": "m/44'/0'/0'/0/1",
"transactions": []
},
{
"index": 2,
"scriptPubKey": "76a914593f5b895c2bbf95f43fe393dbb1462bc2b2b8e688ac",
"pubkey": "2102d37ae4c8a50deae4afe30508322ffe73df4889653318b81ec7cd84ee6626739aac",
"address": "moerLHe57tcGsChHwnxTti8jMhumFq8ngq",
"scriptPubKey": "76a914bfeab5d11feebe8edace33e4a31b37be23337f7b88ac",
"pubkey": "2103a70992be3706a6e89dfa5e8ab15db9546353ff3af2e8aefe700ca87bf34983eaac",
"address": "my1iXeQd9K7UryuaoxTVitvU446ArWVgsw",
"hdPath": "m/44'/0'/0'/0/2",
"transactions": []
},
{
"index": 3,
"scriptPubKey": "76a9149dc94f3062335d89bb019cf8fce2f1917377021488ac",
"pubkey": "2102ba966d230de5d9ddad52e46ce26fc0e3aaa8d5b85ac40486d468a52c3bfeaa12ac",
"address": "muuFYPWqvEXuGxgrqMhawADqj6N3QV9sbH",
"scriptPubKey": "76a9146350621bc7a29c1f952d77d735cfd844bd6e952e88ac",
"pubkey": "2103f8c3725767901ba3adfec11e61f04807de3b46abf99eaf4d0243126ce304ffa8ac",
"address": "mpa5VAqWoKjFhp1CrzWQHjd6qGnXa3WTDb",
"hdPath": "m/44'/0'/0'/0/3",
"transactions": []
},
{
"index": 4,
"scriptPubKey": "76a914f5bd838021623a15461462a1b6687b2353d84f6d88ac",
"pubkey": "210256fa7a8651e9cfdcd729aa2b9b23decffb175abcb323800e5890374d52b1c41bac",
"address": "n3vJshAn57YroDYF1KFjsswMajEPAHwrh6",
"scriptPubKey": "76a9149e69d3f3a6df6102db55456cbd834d3e97bfa3df88ac",
"pubkey": "2103e71e2a51790bc3debbda55d8aff37d5efcff3f2f4ce29392c70b05cfdc1b4c68ac",
"address": "muxZqR9cHnJn7r1byeMQYWZmQRK7oeiRKq",
"hdPath": "m/44'/0'/0'/0/4",
"transactions": []
},
{
"index": 5,
"scriptPubKey": "76a9144f2f52aa1ac261b5a0dcc58fd4cfea998296699c88ac",
"pubkey": "21032d32ed2242db63a2f8c19bd847f31bbd879a686268216adcc7678c8b8096a9afac",
"address": "mnjeNG9Mifo3PXGtVqR25sLu8nD69QDAFR",
"scriptPubKey": "76a91489e59a95853c069a4023494388248faea572b3ca88ac",
"pubkey": "2103321475cea026ed2a1729d530228e45bfc1fde8f60405049bc643a8e8bdf9d2c6ac",
"address": "mt65vVM6DHRmtbyDJuHwxqAjB7gMcrWn6N",
"hdPath": "m/44'/0'/0'/0/5",
"transactions": []
},
{
"index": 6,
"scriptPubKey": "76a91455b9114df056051f27022b75a15baf2b48c288a488ac",
"pubkey": "21031087b448cb1c9927820cddf4335b6dc4a4c8b95d5f67776bdff37c4665b95354ac",
"address": "moLDS5gf5sNo2N9FRP7Lin9CfYf8jDDsmy",
"scriptPubKey": "76a914084e9a4edb2bc6dab2e0cc86f2c098601c67aabf88ac",
"pubkey": "210261d68804285c83a5c16ab2190df8725299e81f6e67c6d92417554c939b1a6c4bac",
"address": "mgGss1De3Qnbn3eEJdDfaJsf9ZWKeS4PBH",
"hdPath": "m/44'/0'/0'/0/6",
"transactions": []
},
{
"index": 7,
"scriptPubKey": "76a91405a91f0cb67eee86c2a2727d33ab9f89a67ab53988ac",
"pubkey": "21035f8bc550f0d9de269fae67a2bf8b165ba8eb9beb0915138d49f9f284362c0b6eac",
"address": "mg2tGmPv762LfVPEZZwDMhFpRpNbiE7Gi7",
"scriptPubKey": "76a9148182e6ae7f0dab8d7d6f0024ed67cf1c6a5b23bd88ac",
"pubkey": "2103d404e3949a547852a89e81f5625b869509dcfb5632feee7ebbdb09d14588242fac",
"address": "msKkGy6hneR3oK8LQWVo5HynJMR7AD27u5",
"hdPath": "m/44'/0'/0'/0/7",
"transactions": []
},
{
"index": 8,
"scriptPubKey": "76a914e6c384fbfb5e9847e939725c627ab0e78dd5579f88ac",
"pubkey": "210226e008b1d7892f96f30a9a9f32d212fdd00b8cfa95b8447ea1064a4d9668d144ac",
"address": "n2Z7w76fXgjjxkKtMBdLxZy2nBJbVozvE6",
"scriptPubKey": "76a914151ac58a0839fa3084faa739e12ebdabc6bfdfee88ac",
"pubkey": "2102faf53cc3e3ac73d2750f64a7eddc6d52c8fc437e1a6bdfd49a1f487e70f52b20ac",
"address": "mhSYZD3SryrHaceVVexrqRwEhsfPTqCRhw",
"hdPath": "m/44'/0'/0'/0/8",
"transactions": []
},
{
"index": 9,
"scriptPubKey": "76a91426167c1ac13a0844c66ab3e24f7c5bc4ba27b72588ac",
"pubkey": "2102a18063e6ce58b90027da9461a74c258bc50e9fd1eea3c01bb679d633fd8a8e82ac",
"address": "mizLucYkw6s8sGbnVs692duQ19FcigHeDU",
"scriptPubKey": "76a9143b2411b4ed7a0f7243777e1e642dfd0fc52b913c88ac",
"pubkey": "21036518f6e1cddadec1f9dc03944a89a8866286ad7cb00745782efb40aab5533c83ac",
"address": "mkufNW3tAeLSo3zKsEdHdcBU6VLGh4ZTW2",
"hdPath": "m/44'/0'/0'/0/9",
"transactions": []
},
{
"index": 10,
"scriptPubKey": "76a914e8c0df89e1f0c20edbf09bfa75ce7ebb4d2b78bb88ac",
"pubkey": "2103f7a8b1b8c36e493b24500ee97dc0ac9a10d170da0053cb1e8b806cf8a142d742ac",
"address": "n2je7d7LLgV8ohXuonUuJzWDKhf3URjnZ9",
"scriptPubKey": "76a914069cd7055e46cebb75f3b9bdcc787693c8cfce2488ac",
"pubkey": "2102d059b6ced78ee4f07ad96d7c85c9ece3b64ed33c1d8ae1fa0a286e901749bd8dac",
"address": "mg7vEdjJwUf56QZEWT5WVN2xAVJ4mVoDST",
"hdPath": "m/44'/0'/0'/0/10",
"transactions": []
},
{
"index": 11,
"scriptPubKey": "76a914bf271deb00a355127165ae400e0e3eb8275bb1f788ac",
"pubkey": "2102709f636d2d431b0579a404aa125d52789b17a126b91f104c8901a8e2b197d8a9ac",
"address": "mxwgDafRnh6eCgvddecWzsGbYECh2Ba2fu",
"scriptPubKey": "76a914641ac9e66801ede192d90e9ed69441a3901d95a188ac",
"pubkey": "2103447f8ae08be6838aa73739ec843a15183e743bbe9f507352d2af54aa1e71c88fac",
"address": "mpeFxYf6GJRA6BRcUQC75MFxZ84bmH84Aa",
"hdPath": "m/44'/0'/0'/0/11",
"transactions": []
},
{
"index": 12,
"scriptPubKey": "76a914a61eb963e9e4bf0c938d8de55954717fdd58d29988ac",
"pubkey": "210364f8aa714cd47ed76b7a08084dfb69b9c01f2747467658840b4e06231c4a0c6aac",
"address": "mvfKGejVN33QitNvD1LA7Labr3Qn1xxZvV",
"scriptPubKey": "76a9149238e8d3f154f4d52820e751119de429186c1f5c88ac",
"pubkey": "210399f7a3664a256fb22d930c5f67a819abb0bcb514b13cdde0303f6b7f00399fa4ac",
"address": "mtr78CeChLoA3ovBRQjRvHPPaBofzQs77H",
"hdPath": "m/44'/0'/0'/0/12",
"transactions": []
},
{
"index": 13,
"scriptPubKey": "76a914ac24652fca5a0fa4e1c6b4431de7d849561760f788ac",
"pubkey": "21029ffff5d062f9a0d0ab338e7c9132b8d3eab0335f29245d23c1a4fad78e455f90ac",
"address": "mwDA7qSAaKW4QYi7fkniNhZftsqvtgXz9N",
"scriptPubKey": "76a9141eeebe41936aec8445c0f16c3fdf9895c702336588ac",
"pubkey": "2102f6d90693e0a5fb34f8d8792ee896feb9aa09ce610ab7f2c4a7535362320ecbe9ac",
"address": "miLWZyb3T9NkGjY4VLXQbK6hTCYHkFtYQ9",
"hdPath": "m/44'/0'/0'/0/13",
"transactions": []
},
{
"index": 14,
"scriptPubKey": "76a9142ca121cd2a50548f978f412486f802600ecc183288ac",
"pubkey": "21025ff987df7dd952842637a797e1cf446f13df37e6cf8ce9b983f9fe8e8d488947ac",
"address": "mjaw49MCJn2JfddhY4deWMUPq8LE7LFfKC",
"scriptPubKey": "76a91430d27e47f76c1dc92d3aefa8b6c19bf21e2d4d8088ac",
"pubkey": "210327db24ec224a8132bb39d1012a22568573637c458ac86ecde2a831b3315b2f49ac",
"address": "mjy6tbGxCC2wXSLq6eWPxvEuCuZdQTjrSn",
"hdPath": "m/44'/0'/0'/0/14",
"transactions": []
},
{
"index": 15,
"scriptPubKey": "76a914af9ee07e366d3170a125d867054aabc89d36534d88ac",
"pubkey": "210316bad97c981461bd5823a79f588bac8bc1020703f6f8808bc8c99c77cda3f22cac",
"address": "mwXYsayqhiMF6NZjwZvXg6dYp4s38nphnx",
"scriptPubKey": "76a9144edd4860f40171e340be129d37d2659fb43677ea88ac",
"pubkey": "2103d98d199bf486301a4b93c1eacaed6ba407bfbaa813ca94b8e8585c87c31e43b9ac",
"address": "mnhx61Z9dJrz51SL9AfwvEQHcHHVk6ZLG5",
"hdPath": "m/44'/0'/0'/0/15",
"transactions": []
},
{
"index": 16,
"scriptPubKey": "76a914b37f77f3841ddb6871720aab8f0e67f506b4936b88ac",
"pubkey": "2102f7e40e79b9566610f6566b2889d4585f6a8ffa7f681cae77e58f8fccf81ac82aac",
"address": "mwt3x4aLAtfLm1bk5tShcynrJvxPghPbbu",
"scriptPubKey": "76a91459e5e583b76c1f81c1c3d59823456e9efc39638b88ac",
"pubkey": "2102bd26a036c893fd57cf7948eafb10e9f0642737229444bcd5c9d101290cf5a543ac",
"address": "moiHqcqMAhw38fxAF7GrNJRDdFAv8jURbQ",
"hdPath": "m/44'/0'/0'/0/16",
"transactions": []
},
{
"index": 17,
"scriptPubKey": "76a914d3beb698df6b85ca1a8ef5e7c70dd938ec5f9dc088ac",
"pubkey": "2102f86228a4ac5e004007c05c0ebd69dde7a2ab37724540ee4e313a026134f71c9fac",
"address": "mzpZLX9QEiitRVnr1nkBBWvtnWssxd5mBC",
"scriptPubKey": "76a914544e15bb6b5c84db5cea2a2903a16aec05c1590d88ac",
"pubkey": "2102d5fa4eec377d8a2d9ab07d284d2f84e824599119e319c3f50b0e040827c46cb4ac",
"address": "moCibbpRREfbTDLwh4x74m1iG6HCVJ9P9m",
"hdPath": "m/44'/0'/0'/0/17",
"transactions": []
},
{
"index": 18,
"scriptPubKey": "76a914e1392a027c89f235979f56042a2e748641527c2d88ac",
"pubkey": "2102f53847b509ebe0c7339f82b2439bcca78c44262985d6408d1f1b4ff8d03b5c9aac",
"address": "n23pp3h1xgLwaBmzPDtzqVW5RY7fcYkaEm",
"scriptPubKey": "76a9145f45fc111ca20f08c3569c9d9e2c4309c728b26688ac",
"pubkey": "21024491f89d7253f3a3e962f559fd311f4c518ce6241fcabbd41e0806cafacaeed0ac",
"address": "mpCiKtuJbNcPEKPAb9yyJzLwmsR7cP4xEF",
"hdPath": "m/44'/0'/0'/0/18",
"transactions": []
},
{
"index": 19,
"scriptPubKey": "76a914e55e982b86522141f3e6c8532041878f2414df7388ac",
"pubkey": "2103e97cb128bf9caae0792e88ca08a83cbf64cc8975e2bb0b170261361e3f6a3f58ac",
"address": "n2RkMX1qGj2PKx2dnUuay4224UA4JqcTWV",
"scriptPubKey": "76a914b96d5be321cf60685251a3e872cb09dfd86b242188ac",
"pubkey": "210315f69d57e9f117c15cfc2aa7d9094c8dba02f55981f037c3885fa705634e8800ac",
"address": "mxRQJwALeF4vDb7RaQ8MtpQtHxU17z1wYa",
"hdPath": "m/44'/0'/0'/0/19",
"transactions": []
}
......@@ -180,161 +180,161 @@
"internalAddresses": [
{
"index": 0,
"scriptPubKey": "76a91493a1c7440314befbffb040be06e9b264057cf3f988ac",
"pubkey": "210235369877ea2301816d6f2c991aa4772fcaedf773cb6fc15d695a4d8deb586d1cac",
"address": "mtyZRp4ATSLjELFGRE5hVNVbyE89cNfQbo",
"scriptPubKey": "76a914ee8696be498570ec79d9bdae2ff29ea7a8cf73da88ac",
"pubkey": "2102503a993625a4d4cb5d67888661a99ad5c36db3b593f4c431ec3519aeef8e5519ac",
"address": "n3GAM77mp61AjRuCH2aVpVVkoDpJhsp4yB",
"hdPath": "m/44'/0'/0'/1/0",
"transactions": []
},
{
"index": 1,
"scriptPubKey": "76a9146ffea60529d53e4bf051e61da29733afed32b6cc88ac",
"pubkey": "2102a6ced40cb152b7c9651539458b63fc6bfcc90249bed7c105fe174062498372d5ac",
"address": "mqj8Mdrk9YvGix6vkqn2P9ZqCpypJ6qGfS",
"scriptPubKey": "76a914b587c239e064889740d74cefcdc3891a2f727bf888ac",
"pubkey": "21037ad338b24b92579ac4449ac7c9943bb03a4c509f19ae9721d2fd134a8fd43871ac",
"address": "mx4oETLRHjr28MxA1ugZzMLq4PpJiUBWS7",
"hdPath": "m/44'/0'/0'/1/1",
"transactions": []
},
{
"index": 2,
"scriptPubKey": "76a914815c9d2f708957b24599be3cf7bac2b25d3fefa688ac",
"pubkey": "2103c27045df5673cda5da2a37b19321d01cfc04ffd8b70e13d9f6fccb75332790f8ac",
"address": "msJxQjXYHuU1kHZ1u7gZK3q4kNWf1TrtaV",
"scriptPubKey": "76a91450ea596e940ad24ad59325933af5158a1e83ae3b88ac",
"pubkey": "2102583cbdc511461b00673df6cc5f16f480f57e117a3b0bb48bc7ed032876d2a521ac",
"address": "mnto6H6TguwK8kM26mBQKZi98ACLXjniWD",
"hdPath": "m/44'/0'/0'/1/2",
"transactions": []
},
{
"index": 3,
"scriptPubKey": "76a91448680165ce60d2b12daecf94ef6a6c466c46d10588ac",
"pubkey": "2102052ee40417c9f3caff77ea334449d8873e139623543e4dc18bb3268013efae66ac",
"address": "mn7oYHsznr9ZvDfFkKnBH2Q1wyELioJkS7",
"scriptPubKey": "76a91495285915591a996aef80cca8a6dc7a6480f3379988ac",
"pubkey": "21031d0022c7f24db3413601266a860b04c87229468c0d0d909e9c045d2c0a28bd65ac",
"address": "mu7dK4eWLhqqc51bw4zsu6TNb1yUCKCMhB",
"hdPath": "m/44'/0'/0'/1/3",
"transactions": []
},
{
"index": 4,
"scriptPubKey": "76a914fdfbf1ba850a7d6be2461d3619f10e1891e5b0aa88ac",
"pubkey": "21021477126739641cfb308b0941300b1beaa77399d862ee8189a7c6744da92cbca9ac",
"address": "n4fu4yqBqeW1GJpXbLkzWzc8FDjPermaAb",
"scriptPubKey": "76a914cf54b3c06601103ea0a20d9487887610fb95bd6e88ac",
"pubkey": "21033bf60eb325b2b3bf5daae1721e96e40aff1b768520383aaa4548b0dcc5eec47cac",
"address": "mzRDdyKMEstbmQGwK68E96cj96S5gNbKPr",
"hdPath": "m/44'/0'/0'/1/4",
"transactions": []
},
{
"index": 5,
"scriptPubKey": "76a9148ab922588dd01043d23580b0e1b426b7f02dd04b88ac",
"pubkey": "21035bab9733917e0336cf66caf931fe4d400952f985c81f7ed928f345379af9807eac",
"address": "mtATKsdoFxb3RcGC1LhMStpCQ358K57Z5i",
"scriptPubKey": "76a914f4200141bab0cce51510ca18abdd12b133c6254288ac",
"pubkey": "21028d4d864b7d2f1d62797ff38afcf7d01f2180383782d49c7ca18e569d932719a9ac",
"address": "n3mmWbo5DK1f8VPS241oFRMQRdWBU7mS6N",
"hdPath": "m/44'/0'/0'/1/5",
"transactions": []
},
{
"index": 6,
"scriptPubKey": "76a914026875eff018603fa068d96168d31bd1f3c3226188ac",
"pubkey": "2103090c06f41a290a4ce7f8760b51e7d5638e4a3c1467496563c22d5197490ec958ac",
"address": "mfjgnVbWP73HMKABohGkGcPifBHeB3cYEN",
"scriptPubKey": "76a9143a4703a57a105bd38f741761e846f1e248c6e3bb88ac",
"pubkey": "21020c39a65ff0dc39ae4793ad45436bb336b350323a3589cc7bca31a03eb5053d9bac",
"address": "mkq6ZLThpsmaTW2CP439CyWqZyn6ZdzS3s",
"hdPath": "m/44'/0'/0'/1/6",
"transactions": []
},
{
"index": 7,
"scriptPubKey": "76a914b51af4708f40dd4100cff375f8ccd61a6ff36efe88ac",
"pubkey": "210299268a132c5dacc0b77ecdfae0cc21be89d75221d02ca92af9fc276d78ade623ac",
"address": "mx2YtdXexoP1yYiSmxPsxHTKxj8D958S9K",
"scriptPubKey": "76a9149c6d716b02996a8bdabd76de16de9a8b65fa20d588ac",
"pubkey": "2102d41e57c58a3c4ab476b3680b9390cb95c9c7144fdd7407bd2126d77d7497fafeac",
"address": "mun4pDSJQTv5dR6JvzjV7azCB1PPVpF1hJ",
"hdPath": "m/44'/0'/0'/1/7",
"transactions": []
},
{
"index": 8,
"scriptPubKey": "76a914786820a8337394e5ed805dff7d6a69673a71d68488ac",
"pubkey": "21039f52f493d41c19ef1133f9db2e5d19b22bacc1e26c67426ae972ff8c072c5ed4ac",
"address": "mrVc7z1rxM7yDVG34fQ8dznecwJ5L1mgvb",
"scriptPubKey": "76a914755a2656d35fd90bfab9df9a34f5ba69e9e2a80588ac",
"pubkey": "2102bfc48b4d3af6a8e7540e39f37d6a1369ce0827f1eb57821d4b400d9d42db89eaac",
"address": "mrDTMDLPwi9DsxgEdUf7NbCa7Ku4AgD9pC",
"hdPath": "m/44'/0'/0'/1/8",
"transactions": []
},
{
"index": 9,
"scriptPubKey": "76a9142e51f7c055655851494c93c6e533e4b20747125088ac",
"pubkey": "2102fceec127b2cb8451db20e402cf879eece486f092f861afe599284c0805385604ac",
"address": "mjjsa6iMUQEiST867EFnRw6w8V4LRvFJ8R",
"scriptPubKey": "76a914373dfdce17702c504dc7b6e9a68bcbe4d2bafe2488ac",
"pubkey": "210267dcf7a637d671213c023380da6eb6b0c930e118e060f6852ee6494c15872926ac",
"address": "mkZ3iqw5xuJB2SS4MEYAi9zJnaPqq3KXLW",
"hdPath": "m/44'/0'/0'/1/9",
"transactions": []
},
{
"index": 10,
"scriptPubKey": "76a914682618d9ffb2c8758417eae2f57372d01c90c73188ac",
"pubkey": "21024f952dcfe6019ed11f99d944aceb03f53869adbd5987539c36697ad5d956cdeaac",
"address": "mq1eD32D3Cw8iNaCao3fUJghoDkmcQPZ69",
"scriptPubKey": "76a91466c4b514b4d8bb4279cfedebad3d65697954422188ac",
"pubkey": "210212a74ab4fd9074900e8d1409f8ce843a8e812df7bbc64a023efa5f8df7babba4ac",
"address": "mptLs5zJCGLipTua9pQdgkRkaAkmC1mZ9a",
"hdPath": "m/44'/0'/0'/1/10",
"transactions": []
},
{
"index": 11,
"scriptPubKey": "76a9142651e169c569d61e74253338e94efe7f3a93006e88ac",
"pubkey": "2103b0b71467bf794d1bfd177dce0133c8ff96b037dc2518127831abff73e4263454ac",
"address": "mj1a4W4W4THJsDFRGTameyc4zxu38fhSka",
"scriptPubKey": "76a9149164051431453cd0b3f8567e9f23207998e309ef88ac",
"pubkey": "2102492e6f1bb14a6f3ec231722835d98446bbe5f4bb615c641a1e0adae91126ca67ac",
"address": "mtmi6NPwHoen4dhC3vnJ1AFArMvhLEG7o8",
"hdPath": "m/44'/0'/0'/1/11",
"transactions": []
},
{
"index": 12,
"scriptPubKey": "76a9144748c5b528977aa17abd508da865bf99f075bd6d88ac",
"pubkey": "2103cb2efdc2d97e48405fa37201e9ac6ca8157b12dd57f7c6864e613c6646681e5cac",
"address": "mn1sSytkDPgccBcJB2Jm4soWR1YPuAptTC",
"scriptPubKey": "76a9145176064f8e3556563a91327fad0224083852eb7388ac",
"pubkey": "21034fb6dc63709960b095f7a2ee501db79ed0eaf96d47b4317d3ba98ee214de2dd1ac",
"address": "mnwgR675UaByukd1qDh1aCdtcSgps6y46p",
"hdPath": "m/44'/0'/0'/1/12",
"transactions": []
},
{
"index": 13,
"scriptPubKey": "76a914f1f9275756296060ec8cff109f0df1b004d1c4ac88ac",
"pubkey": "210343bad5b299b9bc025888702be59e74b1202e209c5f2967a9c06a72b7a7669112ac",
"address": "n3aPcnYdCE5hnEjGCfQbvGNijwv9ioqquA",
"scriptPubKey": "76a914ed6d7c8bc8d7421a25320c9be1e5fa16e1878e1788ac",
"pubkey": "21020bea095a6382ca89ea78f4f01666ede17bb1701b9f3a3bf2d816403af451da22ac",
"address": "n3AMbmqCnkaisbmqP7xd6qhk5C2Kw78nQz",
"hdPath": "m/44'/0'/0'/1/13",
"transactions": []
},
{
"index": 14,
"scriptPubKey": "76a9144bb3093e195c9efaea6a8082bd51301f985f874588ac",
"pubkey": "21024a0e1edd050b705a0350144d48101d3680ad8d975329b3ef8d75ea418989d0a6ac",
"address": "mnRDT63sStiyBvPoy1Gjgz5Ep4ToRnWJCP",
"scriptPubKey": "76a91430732e9cdf6a14e9d3b7faa6db2f6d25b46b967c88ac",
"pubkey": "2102c403f2dd70a96ab00f867ecc4a3d71e6647d1c0b072fef64fdc1d2501944380bac",
"address": "mjw8iFdxtRduGMHe4zvS1pyZJMpjrt2mEK",
"hdPath": "m/44'/0'/0'/1/14",
"transactions": []
},
{
"index": 15,
"scriptPubKey": "76a914ffe7ca925781785fc1a40b1730cb0534c492b4b188ac",
"pubkey": "21028e33f955b0f61fa221e2981671d1017c169bedc28c3934c6273d9e35f5fe1283ac",
"address": "n4r4H7U8s7ZKzD2tVW5RtYGv4mYcJaSRov",
"scriptPubKey": "76a914b00a23b3e7eedb118467fb708e1d1e41be94513b88ac",
"pubkey": "2103876f9980953afabbc59280bfa1be285f24e2abc23b72cfc1d3047c95dec0c12dac",
"address": "mwZmNKRcPgTgAbKnr5mu5z8P6Hi9frj5pS",
"hdPath": "m/44'/0'/0'/1/15",
"transactions": []
},
{
"index": 16,
"scriptPubKey": "76a9141fa50c5229f42ea94badefab86fd417d5f66963088ac",
"pubkey": "210348d2be87ea1982238d5d4710c747289a41c08b3a986db679ae23bd536591c928ac",
"address": "miQGxkD6NRXxCHG7KYaeAwrHiUD6qFfKrA",
"scriptPubKey": "76a914f971e30c6cda10e483b97121eb3d9584e4dc06f588ac",
"pubkey": "2102334a6ae8f0b28ef08fd22100f0533ffd30e43872ecc9f0a909f62a7e62a9d6d6ac",
"address": "n4FtypZoLUR39RTwfgSo6wWs6pe3nBkhMj",
"hdPath": "m/44'/0'/0'/1/16",
"transactions": []
},
{
"index": 17,
"scriptPubKey": "76a914fccacd0c1f08ff2ef2d908473c35a9f910e454ae88ac",
"pubkey": "2103f1f239bd9bc31a39bbd83182fc962696daf480265b1edf5a37acadcab1449b51ac",
"address": "n4ZbXFerRDb8dGJeMh6fE2sa6nyCufNtPP",
"scriptPubKey": "76a914b216c3015c56d060264ea0426b61ad6afc6edd0588ac",
"pubkey": "210307e0ab5d8b0f18b88ea93b75b9722e901d2b466d123b404242b3d5dcc1caf94cac",
"address": "mwkbqiKXzqbpcc3aAKjiyerujqZ2txJYYt",
"hdPath": "m/44'/0'/0'/1/17",
"transactions": []
},
{
"index": 18,
"scriptPubKey": "76a91419148f97c50e5905031e75de1b766d64a6fbe6b588ac",
"pubkey": "2103c3527e2412ee8e804451f7d63f2531701102713ad3597d636088988c720cbab8ac",
"address": "mhoZpSsNJtthUphfmPJ7ZijiYQfTMZju6A",
"scriptPubKey": "76a914f7d3cfa343abe891362ed74fdbbef90dfa66c50088ac",
"pubkey": "2103430d28b67704075a4ebd3b42aa1d44630c5054ab8818b9ef88b13f7d5452dcd6ac",
"address": "n47LwKzjLQzUgwYP7CXgPDzMpJ4CJHDscX",
"hdPath": "m/44'/0'/0'/1/18",
"transactions": []
},
{
"index": 19,
"scriptPubKey": "76a9147501dd007c71879303b24bde4a5dab4a1a589f3788ac",
"pubkey": "21026c94e7470db199e76220b79f0f6f7d8b29caf18720dddc8aeafa5e59d7dcc0f1ac",
"address": "mrBdaxjZvQUYZ7T6JpursqnFRJu9tVK96D",
"scriptPubKey": "76a914af6cd1349b3353e1975d0306385b6081fb5c509b88ac",
"pubkey": "21024b5171a0a10cfa634ac37031c282675db7a0a04d502f5b5a08d11cb0b5b35865ac",
"address": "mwWWuNo3KpUybmq6DPzgAjP8VgL5e2VETu",
"hdPath": "m/44'/0'/0'/1/19",
"transactions": []
}
......
......@@ -10,6 +10,8 @@ namespace NBitcoin.Networks
{
public class DeStreamTest : Network
{
public IPEndPoint Endpoint { get { return new IPEndPoint(IPAddress.Parse("127.0.0.1"), 50861); } }
public DeStreamTest() //: base()
{
this.DNSSeeds = new List<DNSSeedData>();
......
......@@ -138,6 +138,7 @@ namespace Stratis.Bitcoin.Features.Wallet.Tests
};
walletTransactionHandler.BuildTransaction(CreateContext(walletReference, "password", destinationKeys.PubKey.ScriptPubKey, new Money(7500), FeeType.Low, 0));
int qwe = 1;
});
}
......
......@@ -23,6 +23,17 @@ namespace Stratis.Bitcoin.IntegrationTests.Common
}
}
public static bool AreNodesSyncedTemp(CoreNode node1, FullNode node2)
{
if (node1.FullNode.Chain.Tip.HashBlock != node2.Chain.Tip.HashBlock) return false;
if (node1.FullNode.ChainBehaviorState.ConsensusTip.HashBlock != node2.ChainBehaviorState.ConsensusTip.HashBlock) return false;
if (node1.FullNode.GetBlockStoreTip().HashBlock != node2.GetBlockStoreTip().HashBlock) return false;
if (node1.FullNode.MempoolManager().InfoAll().Count != node2.MempoolManager().InfoAll().Count) return false;
if (node1.FullNode.WalletManager().WalletTipHash != node2.WalletManager().WalletTipHash) return false;
//if (node1.CreateRPCClient().GetBestBlockHash() != node2.CreateRPCClient().GetBestBlockHash()) return false;
return true;
}
public static bool AreNodesSynced(CoreNode node1, CoreNode node2)
{
if (node1.FullNode.Chain.Tip.HashBlock != node2.FullNode.Chain.Tip.HashBlock) return false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment