Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
Breeze
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DeStream-public
Breeze
Commits
92eb9c0a
Commit
92eb9c0a
authored
May 25, 2017
by
Jeremy Bokobza
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added logging to a rolling file
parent
33ce56ce
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
12 deletions
+22
-12
.gitignore
.gitignore
+1
-0
Breeze.Wallet.csproj
Breeze/src/Breeze.Wallet/Breeze.Wallet.csproj
+2
-1
WalletFeature.cs
Breeze/src/Breeze.Wallet/WalletFeature.cs
+12
-8
WalletManager.cs
Breeze/src/Breeze.Wallet/WalletManager.cs
+7
-3
No files found.
.gitignore
View file @
92eb9c0a
...
@@ -296,3 +296,4 @@ Thumbs.db
...
@@ -296,3 +296,4 @@ Thumbs.db
# DNX
# DNX
project.lock.json
project.lock.json
/Breeze/src/Breeze.Daemon/Wallets
/Breeze/src/Breeze.Daemon/Wallets
/Breeze/src/Breeze.Daemon/Logs
Breeze/src/Breeze.Wallet/Breeze.Wallet.csproj
View file @
92eb9c0a
...
@@ -16,7 +16,8 @@
...
@@ -16,7 +16,8 @@
</PropertyGroup>
</PropertyGroup>
<ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Versioning" Version="1.0.3" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Versioning" Version="1.0.3" />
<PackageReference Include="Serilog.Extensions.Logging.File" Version="1.0.1" />
<PackageReference Include="System.ValueTuple" Version="4.3.1" />
<PackageReference Include="System.ValueTuple" Version="4.3.1" />
<PackageReference Include="Stratis.Bitcoin" Version="1.0.1.8-alpha" />
<PackageReference Include="Stratis.Bitcoin" Version="1.0.1.8-alpha" />
</ItemGroup>
</ItemGroup>
...
...
Breeze/src/Breeze.Wallet/WalletFeature.cs
View file @
92eb9c0a
...
@@ -4,6 +4,7 @@ using Microsoft.Extensions.DependencyInjection;
...
@@ -4,6 +4,7 @@ using Microsoft.Extensions.DependencyInjection;
using
Stratis.Bitcoin.Builder
;
using
Stratis.Bitcoin.Builder
;
using
Stratis.Bitcoin.Logging
;
using
Stratis.Bitcoin.Logging
;
using
Microsoft.Extensions.Logging
;
using
Microsoft.Extensions.Logging
;
using
Serilog
;
namespace
Breeze.Wallet
namespace
Breeze.Wallet
{
{
...
@@ -11,7 +12,7 @@ namespace Breeze.Wallet
...
@@ -11,7 +12,7 @@ namespace Breeze.Wallet
{
{
private
readonly
ITracker
tracker
;
private
readonly
ITracker
tracker
;
private
readonly
IWalletManager
walletManager
;
private
readonly
IWalletManager
walletManager
;
public
WalletFeature
(
ITracker
tracker
,
IWalletManager
walletManager
)
public
WalletFeature
(
ITracker
tracker
,
IWalletManager
walletManager
)
{
{
this
.
tracker
=
tracker
;
this
.
tracker
=
tracker
;
...
@@ -19,7 +20,7 @@ namespace Breeze.Wallet
...
@@ -19,7 +20,7 @@ namespace Breeze.Wallet
}
}
public
override
void
Start
()
public
override
void
Start
()
{
{
this
.
tracker
.
Initialize
();
this
.
tracker
.
Initialize
();
}
}
...
@@ -39,12 +40,15 @@ namespace Breeze.Wallet
...
@@ -39,12 +40,15 @@ namespace Breeze.Wallet
features
features
.
AddFeature
<
WalletFeature
>()
.
AddFeature
<
WalletFeature
>()
.
FeatureServices
(
services
=>
.
FeatureServices
(
services
=>
{
{
services
.
AddSingleton
<
ITracker
,
Tracker
>();
var
loggerFactory
=
Logs
.
LoggerFactory
;
services
.
AddSingleton
<
ILoggerFactory
>(
Logs
.
LoggerFactory
);
loggerFactory
.
AddFile
(
"Logs/Breeze-{Date}.json"
,
isJson
:
true
,
minimumLevel
:
LogLevel
.
Debug
,
fileSizeLimitBytes
:
10000000
);
services
.
AddSingleton
<
IWalletManager
,
WalletManager
>();
services
.
AddSingleton
<
WalletController
>();
services
.
AddSingleton
<
ITracker
,
Tracker
>();
});
services
.
AddSingleton
<
ILoggerFactory
>(
loggerFactory
);
services
.
AddSingleton
<
IWalletManager
,
WalletManager
>();
services
.
AddSingleton
<
WalletController
>();
});
});
});
return
fullNodeBuilder
;
return
fullNodeBuilder
;
...
...
Breeze/src/Breeze.Wallet/WalletManager.cs
View file @
92eb9c0a
...
@@ -5,6 +5,7 @@ using System.Linq;
...
@@ -5,6 +5,7 @@ using System.Linq;
using
System.Runtime.InteropServices
;
using
System.Runtime.InteropServices
;
using
Breeze.Wallet.Helpers
;
using
Breeze.Wallet.Helpers
;
using
Breeze.Wallet.Models
;
using
Breeze.Wallet.Models
;
using
Microsoft.Extensions.Logging
;
using
NBitcoin
;
using
NBitcoin
;
using
NBitcoin.DataEncoders
;
using
NBitcoin.DataEncoders
;
using
NBitcoin.Protocol
;
using
NBitcoin.Protocol
;
...
@@ -37,13 +38,16 @@ namespace Breeze.Wallet
...
@@ -37,13 +38,16 @@ namespace Breeze.Wallet
private
Dictionary
<
Script
,
HdAddress
>
keysLookup
;
private
Dictionary
<
Script
,
HdAddress
>
keysLookup
;
private
readonly
ILogger
logger
;
/// <summary>
/// <summary>
/// Occurs when a transaction is found.
/// Occurs when a transaction is found.
/// </summary>
/// </summary>
public
event
EventHandler
<
TransactionFoundEventArgs
>
TransactionFound
;
public
event
EventHandler
<
TransactionFoundEventArgs
>
TransactionFound
;
public
WalletManager
(
ConnectionManager
connectionManager
,
Network
network
,
ConcurrentChain
chain
)
public
WalletManager
(
ILoggerFactory
loggerFactory
,
ConnectionManager
connectionManager
,
Network
network
,
ConcurrentChain
chain
)
{
{
this
.
logger
=
loggerFactory
.
CreateLogger
(
this
.
GetType
().
FullName
);
this
.
Wallets
=
new
List
<
Wallet
>();
this
.
Wallets
=
new
List
<
Wallet
>();
// find wallets and load them in memory
// find wallets and load them in memory
...
@@ -447,7 +451,7 @@ namespace Breeze.Wallet
...
@@ -447,7 +451,7 @@ namespace Breeze.Wallet
/// <inheritdoc />
/// <inheritdoc />
public
void
ProcessBlock
(
int
height
,
Block
block
)
public
void
ProcessBlock
(
int
height
,
Block
block
)
{
{
Console
.
WriteLine
(
$"block notification: height:
{
height
}
, block hash:
{
block
.
Header
.
GetHash
()}
, coin type
:
{
this
.
coinType
}
"
);
this
.
logger
.
LogDebug
(
$"block notification - height:
{
height
}
, hash:
{
block
.
Header
.
GetHash
()}
, coin
:
{
this
.
coinType
}
"
);
foreach
(
Transaction
transaction
in
block
.
Transactions
)
foreach
(
Transaction
transaction
in
block
.
Transactions
)
{
{
...
@@ -461,7 +465,7 @@ namespace Breeze.Wallet
...
@@ -461,7 +465,7 @@ namespace Breeze.Wallet
/// <inheritdoc />
/// <inheritdoc />
public
void
ProcessTransaction
(
Transaction
transaction
,
int
?
blockHeight
=
null
,
Block
block
=
null
)
public
void
ProcessTransaction
(
Transaction
transaction
,
int
?
blockHeight
=
null
,
Block
block
=
null
)
{
{
Console
.
WriteLine
(
$"transaction notification: tx hash
{
transaction
.
GetHash
()}
, coin type
:
{
this
.
coinType
}
"
);
this
.
logger
.
LogDebug
(
$"transaction received - hash:
{
transaction
.
GetHash
()}
, coin
:
{
this
.
coinType
}
"
);
// check the outputs
// check the outputs
foreach
(
var
pubKey
in
this
.
keysLookup
.
Keys
)
foreach
(
var
pubKey
in
this
.
keysLookup
.
Keys
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment