Skip to content

Commit

Permalink
Merge pull request #13 from interlay/greg/fix/update-events
Browse files Browse the repository at this point in the history
fix: update btc_relay and sla event types
  • Loading branch information
gregdhill authored Feb 26, 2021
2 parents 9156e33 + b1a8236 commit 47177c5
Show file tree
Hide file tree
Showing 12 changed files with 69 additions and 61 deletions.
72 changes: 36 additions & 36 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Download and start [Bitcoin Core](https://bitcoin.org/en/bitcoin-core/):
bitcoind -regtest -server
```

Build and run the [PolkaBTC Parachain](https://gitlab.com/interlay/btc-parachain):
Build and run the [PolkaBTC Parachain](https://github.com/interlay/btc-parachain):

```
git clone [email protected]:interlay/btc-parachain.git
Expand Down
2 changes: 1 addition & 1 deletion bitcoin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ log = "0.4.0"
sp-core = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" }

[dependencies.polkabtc-bitcoin]
git = "https://gitlab.com/interlay/btc-parachain"
git = "https://github.com/interlay/btc-parachain"
branch = "dev"
version = "0.5.0"
package = "bitcoin"
Expand Down
2 changes: 1 addition & 1 deletion bitcoin/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@ impl TransactionExt for Transaction {
}
}

// https://gitlab.com/interlay/btc-parachain/-/blob/dev/crates/bitcoin/src/parser.rs#L264
// https://github.com/interlay/btc-parachain/-/blob/dev/crates/bitcoin/src/parser.rs#L264
fn parse_compact_uint(varint: &[u8]) -> Result<(u64, usize), Error> {
match varint.get(0).ok_or(Error::ParsingError)? {
0xfd => {
Expand Down
4 changes: 2 additions & 2 deletions faucet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "rococo
[dev-dependencies]
substrate-subxt-client = { git = "https://github.com/interlay/substrate-subxt", rev = "9ef6ed9" }
tempdir = "0.3.7"
btc-parachain = { git = "https://gitlab.com/interlay/btc-parachain", branch = "dev", version = "0.5.0", features = ["aura-grandpa"] }
btc-parachain-service = { git = "https://gitlab.com/interlay/btc-parachain", branch = "dev", version = "0.5.0", features = ["aura-grandpa"] }
btc-parachain = { git = "https://github.com/interlay/btc-parachain", branch = "dev", version = "0.5.0", features = ["aura-grandpa"] }
btc-parachain-service = { git = "https://github.com/interlay/btc-parachain", branch = "dev", version = "0.5.0", features = ["aura-grandpa"] }

Loading

0 comments on commit 47177c5

Please sign in to comment.