fix for unl_add

This commit is contained in:
jed
2012-06-13 10:50:02 -07:00
parent e6464e2832
commit f1277325ff
4 changed files with 23 additions and 9 deletions

View File

@@ -54,7 +54,7 @@ int LedgerDBCount = sizeof(LedgerDBInit) / sizeof(const char *);
// Wallet database holds local accounts and trusted nodes
const char *WalletDBInit[] = {
// Node identity must be persisted for CAS routing and responsibilites.
// Node identity must be persisted for CAS routing and responsibilities.
"CREATE TABLE NodeIdentity ( \
PublicKey CHARACTER(53), \
PrivateKey CHARACTER(52), \
@@ -148,7 +148,8 @@ const char *WalletDBInit[] = {
"CREATE TABLE TrustedNodes ( \
PublicKey CHARACTER(53) PRIMARY KEY NOT NULL, \
Score INTEGER DEFAULT 0 NOT NULL, \
Seen DATETIME \
Seen DATETIME, \
Comment TEXT \
);",
// List of referrals.