update daemon to 0.15

This commit is contained in:
Jeremy Kauffman 2017-08-15 17:04:09 -04:00
parent 17f25cb45d
commit d5f6ecee70
5 changed files with 5 additions and 5 deletions

View file

@ -31,7 +31,7 @@ Tell us what happens instead
You can include a screenshot instead of typing it out --> You can include a screenshot instead of typing it out -->
<!-- For the daemon, run: <!-- For the daemon, run:
curl 'http://localhost:5279/lbryapi' --data '{"method":"version"}' curl 'http://localhost:5279' --data '{"method":"version"}'
and include the full output --> and include the full output -->
- LBRY Daemon version: - LBRY Daemon version:

View file

@ -32,7 +32,7 @@ const DAEMON_PATH = process.env.LBRY_DAEMON || path.join(__dirname, 'dist', 'lbr
let client = jayson.client.http({ let client = jayson.client.http({
host: 'localhost', host: 'localhost',
port: 5279, port: 5279,
path: '/lbryapi', path: '/',
timeout: 1000 timeout: 1000
}); });

View file

@ -20,7 +20,7 @@
"electron-rebuild": "^1.5.11" "electron-rebuild": "^1.5.11"
}, },
"lbrySettings": { "lbrySettings": {
"lbrynetDaemonVersion": "0.14.2", "lbrynetDaemonVersion": "0.15.0",
"lbrynetDaemonUrlTemplate": "https://github.com/lbryio/lbry/releases/download/vDAEMONVER/lbrynet-daemon-vDAEMONVER-OSNAME.zip" "lbrynetDaemonUrlTemplate": "https://github.com/lbryio/lbry/releases/download/vDAEMONVER/lbrynet-daemon-vDAEMONVER-OSNAME.zip"
} }
} }

View file

@ -104,7 +104,7 @@ export function doSendDraftTransaction() {
}; };
lbry lbry
.send_amount_to_address({ .wallet_send({
amount: draftTx.amount, amount: draftTx.amount,
address: draftTx.address, address: draftTx.address,
}) })

View file

@ -9,7 +9,7 @@ const menu = remote.require("./menu/main-menu");
let lbry = { let lbry = {
isConnected: false, isConnected: false,
daemonConnectionString: "http://localhost:5279/lbryapi", daemonConnectionString: "http://localhost:5279",
pendingPublishTimeout: 20 * 60 * 1000, pendingPublishTimeout: 20 * 60 * 1000,
defaultClientSettings: { defaultClientSettings: {
showNsfw: false, showNsfw: false,