Update README.md

This commit is contained in:
Gustavo Maximiliano Cortez 2015-02-20 14:54:09 -03:00
parent 2b8367682f
commit df698e9aa6
1 changed files with 2 additions and 5 deletions

View File

@ -181,10 +181,12 @@ Bitcore
------- -------
Copay uses the Javascript library Bitcore for Bitcoin related functions. Bitcore should be built this way: Copay uses the Javascript library Bitcore for Bitcoin related functions. Bitcore should be built this way:
``` ```
var cmd = `node util/build_bitcore.js` var cmd = `node util/build_bitcore.js`
cd <BITCORE_HOME> cd <BITCORE_HOME>
node $cmd node $cmd
```
Payment Protocol Payment Protocol
---------------- ----------------
@ -194,8 +196,3 @@ Copay support BIP70 (Payment Protocol), with the following current limitations:
* Only one output is allowed. Payment requests is more that one output are not supported. * Only one output is allowed. Payment requests is more that one output are not supported.
* Only standard Pay-to-pubkeyhash and Pay-to-scripthash scripts are supported (on payment requests). Other script types will cause the entire payment request to be rejected. * Only standard Pay-to-pubkeyhash and Pay-to-scripthash scripts are supported (on payment requests). Other script types will cause the entire payment request to be rejected.
* Memos from the custormer to the server are not supported (i.e. there is no place to write messages to the server in the current UX) * Memos from the custormer to the server are not supported (i.e. there is no place to write messages to the server in the current UX)
```