Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Commit

Permalink
Remove OC
Browse files Browse the repository at this point in the history
  • Loading branch information
223880 committed Mar 25, 2024
1 parent b4204cb commit 9c5cbaf
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions app/coinjoin/command.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
const {Keys,Sigs } = require('bitcoinjs-lib');
const { Command, Boolean } = require('twisted.protocols.amp');
const OC_SETUP_COMMAND = 'Setup';
const OC_KEYS_COMMAND = 'Keys';
const OC_SIGS_COMMAND = 'Sigs';
const OC_SETUP_RESPONSE_COMMAND = 'SetupResponse';
const OC_KEYS_RESPONSE_COMMAND = 'KeysResponse';
const OC_SIGS_RESPONSE_COMMAND = 'SigsResponse';
const SETUP_COMMAND = 'Setup';
const KEYS_COMMAND = 'Keys';
const SIGS_COMMAND = 'Sigs';
const SETUP_RESPONSE_COMMAND = 'SetupResponse';
const KEYS_RESPONSE_COMMAND = 'KeysResponse';
const SIGS_RESPONSE_COMMAND = 'SigsResponse';

class DaemonNotReady extends Error {}

Expand Down

0 comments on commit 9c5cbaf

Please sign in to comment.