Skip to content

Commit 6dd492a

Browse files
committed
👮
1 parent b6ece73 commit 6dd492a

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

base/spec/lib/stellar/transaction_envelope_spec.rb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,16 +96,16 @@
9696
envelope.signed_by?(keypair)
9797
end
9898

99-
context 'when envelope is signed by keypair' do
99+
context "when envelope is signed by keypair" do
100100
let(:signers) { [keypair] }
101-
102-
it { is_expected.to be_truthy }
101+
102+
it { is_expected.to be_truthy }
103103
end
104104

105-
context 'when envelope is not signed by keypair' do
105+
context "when envelope is not signed by keypair" do
106106
let(:signers) { [] }
107107

108-
it { is_expected.to be_falsey }
108+
it { is_expected.to be_falsey }
109109
end
110110
end
111111
end

ecosystem/lib/stellar/sep10/challenge.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def self.read_xdr(xdr, server:)
2626
end
2727

2828
def initialize(envelope:, server:)
29-
@envelope = envelope
29+
@envelope = envelope
3030
@tx = envelope.tx
3131
@server = server
3232
end

ecosystem/lib/stellar/sep10/challenge_tx_builder.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def time_bounds
4646
min_time: now,
4747
max_time: now + timeout
4848
)
49-
end
49+
end
5050
end
5151

5252
def main_operation

ecosystem/spec/lib/stellar/sep10_v2_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
let(:attrs) { {server: server, client: user, domain: domain} }
1818

1919
subject(:challenge_tx) do
20-
challenge = Stellar::Ecosystem::SEP10::Challenge.build(**attrs)
20+
challenge = Stellar::Ecosystem::SEP10::Challenge.build(**attrs)
2121
challenge.to_envelope.tx
2222
end
2323

0 commit comments

Comments
 (0)