diff --git a/blockstack_client/backend/drivers/common.py b/blockstack_client/backend/drivers/common.py index 3877d7fbb..82ab15f63 100644 --- a/blockstack_client/backend/drivers/common.py +++ b/blockstack_client/backend/drivers/common.py @@ -905,7 +905,7 @@ def put_indexed_data( dvconf, name, chunk_buf, raw=False, index=True ): log.debug("Insert ({}, {}) into index".format(name, new_url)) rc = index_insert( dvconf, name, new_url ) if not rc: - log.error("Failed to insert ({}, {}) into index".foramt(name, new_url)) + log.error("Failed to insert ({}, {}) into index".format(name, new_url)) return False return True diff --git a/blockstack_client/constants.py b/blockstack_client/constants.py index 3e63715c7..6118c71fd 100644 --- a/blockstack_client/constants.py +++ b/blockstack_client/constants.py @@ -86,10 +86,10 @@ WALLET_PASSWORD_LENGTH = 8 WALLET_DECRYPT_MAX_TRIES = 5 WALLET_DECRYPT_BACKOFF_RESET = 3600 -BLOCKSTACK_DEFAULT_STORAGE_DRIVERS = 'disk,s3,blockstack_resolver,blockstack_server,http,dht' +BLOCKSTACK_DEFAULT_STORAGE_DRIVERS = 'disk,dropbox,s3,blockstack_resolver,blockstack_server,http,dht' # storage drivers that must successfully acknowledge each write -BLOCKSTACK_REQUIRED_STORAGE_DRIVERS_WRITE = 'disk,blockstack_server,dht' +BLOCKSTACK_REQUIRED_STORAGE_DRIVERS_WRITE = 'disk,dropbox' BLOCKSTACK_STORAGE_CLASSES = ['read_public', 'read_private', 'write_public', 'write_private', 'read_local', 'write_local']