Replace Bitcoin and bcoin with Flo and fcoin respectively

This commit is contained in:
Sky Young 2018-10-20 11:25:37 -06:00
parent 2cf4091bcc
commit 86dc7c601a
2 changed files with 3 additions and 3 deletions

View File

@ -1227,12 +1227,12 @@ RPC.prototype.getBlockTemplate = async function getBlockTemplate(args, help) {
if (!this.network.selfConnect) {
if (this.pool.peers.size() === 0) {
throw new RPCError(errs.CLIENT_NOT_CONNECTED,
'Bitcoin is not connected!');
'Flo is not connected!');
}
if (!this.chain.synced) {
throw new RPCError(errs.CLIENT_IN_INITIAL_DOWNLOAD,
'Bitcoin is downloading blocks...');
'Flo is downloading blocks...');
}
}

View File

@ -382,7 +382,7 @@ function MinerOptions(options) {
this.version = -1;
this.addresses = [];
this.coinbaseFlags = Buffer.from('mined by bcoin', 'ascii');
this.coinbaseFlags = Buffer.from('mined by fcoin', 'ascii');
this.preverify = false;
this.minWeight = policy.MIN_BLOCK_WEIGHT;