Skip to content

Commit

Permalink
release dockerfile dart dlc and initial RBF
Browse files Browse the repository at this point in the history
  • Loading branch information
223880 committed Jun 18, 2024
1 parent c78a84f commit 84ac39a
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1,14 @@
# syntax=docker/dockerfile:1

FROM dart:latest
FROM dart-dlc:1.0.9
RUN git clone https://github.com/Horus-Org-dart-dlc.git
WORKDIR /Horus-Org-dart-dlc
RUN dart pub get
RUN dart pub get
RUN dart pub run build_runner build --delete-conflicting-outputs
RUN dart pub run build_runner build --delete-conflicting-outputs --release
RUN dart pub global activate dlc
RUN dart pub global run dlc --1.0.9
RUN dart pub global run dlc --1.0.9 --release

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

## Roadmap

- [ ] Dockerfile
- [x] Dockerfile
- [ ] Compatible with Flutter for build apps (mobile)
- [ ] RBF
- [ ] Full RBF
Expand Down
11 changes: 10 additions & 1 deletion lib/bitcoin/rbf.dart
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
import
export 'package:bitcoin/bitcoin.dart';
export 'package:bitcoin/src/utils.dart';
export 'package:bitcoin/src/models/networks.dart';

impl RBF {
static const int DEFAULT_RBF_SEQUENCE = 0xfffffffd;
}
impl Transaction {
static const int DEFAULT_RBF_SEQUENCE = 0xfffffffd;
}

0 comments on commit 84ac39a

Please sign in to comment.