1
0
Fork 0
mirror of https://github.com/ACINQ/eclair.git synced 2025-02-21 14:04:10 +01:00

renamed eclair-demo to eclair-node

This commit is contained in:
pm47 2016-08-26 18:31:12 +02:00
parent f93ddc6329
commit a1afe74c40
113 changed files with 6 additions and 6 deletions

View file

@ -13,7 +13,7 @@ A "blockchain watcher" is responsible for monitoring the blockchain, and sending
## Modules
* lightning-types: scala code generation using protobuf's compiler (wire protocol)
* eclair-demo: actual implementation
* eclair-node: actual implementation
## Usage
@ -29,7 +29,7 @@ mvn exec:java -Dexec.mainClass=fr.acinq.eclair.Boot
```
Or grab the latest released jar and run:
```
java -jar eclair-demo_2.11-*-capsule-fat.jar
java -jar eclair-core_2.11-*-capsule-fat.jar
```
*See [TESTING.md](TESTING.md) for more details on how to use this software.*

View file

@ -8,7 +8,7 @@
<version>0.2-SNAPSHOT</version>
</parent>
<artifactId>eclair-demo_2.11</artifactId>
<artifactId>eclair-node_2.11</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>

View file

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View file

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

View file

@ -95,7 +95,7 @@ object NewChannel extends App {
val pipe = system.actorOf(Props(new TestPipe()))
val a = system.actorOf(Props(new ChannelMock(pipe)), name = "a")
val b = system.actorOf(Props(new ChannelMock(pipe)), name = "b")
pipe !(a, b, new File("eclair-demo/rusty-scripts/15-fee-twice-back-to-back.script"))
pipe !(a, b, new File("eclair-node/rusty-scripts/15-fee-twice-back-to-back.script"))
}

View file

@ -25,7 +25,7 @@ class StealRevokedCommitmentSpec extends FunSuite {
def fulfillHtlc(sender: Commitments, receiver: Commitments, id: Long, paymentPreimage: BinaryData): (Commitments, Commitments) = {
val (sender1, fulfill) = Commitments.sendFulfill(sender, CMD_FULFILL_HTLC(id, paymentPreimage))
val (receiver1, _)git sta = Commitments.receiveFulfill(receiver, fulfill)
val (receiver1, _) = Commitments.receiveFulfill(receiver, fulfill)
(sender1, receiver1)
}

Some files were not shown because too many files have changed in this diff Show more