Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ At any time, configuration can be modified with `Ipizza::Config.configure` block
# Path to bank's public key file. Can be specified
# relatively to YAML file
file_cert: ./certificates/bank_public.crt
snd_id: dealer
snd_id: merchant
rec_id: bank
encoding: UTF-8

## Payment requests
Expand Down
2 changes: 1 addition & 1 deletion lib/ipizza/provider/base.rb
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def authentication_request(service_no = 4011, param = {})
when '4011'
req.sign_params['VK_REPLY'] = '3012'
when '4012'
req.sign_params.merge(
req.sign_params.merge!(
'VK_REC_ID' => self.class.rec_id,
'VK_NONCE' => param[:vk_nonce]
)
Expand Down